Significance of ng-repeat-start vs ng-repeat
The significance of these two directives is similar: they repeat HTML-tags. The difference is only that with help of ng-repeat-start you could repeat few tags starting from tag with ng-repeat-start and finishing by ng-repeat-end. For example you have next code: So now we can add 2 directives for these code.With ng-repeat: With ng-repeat-start and ng-repeat-end: So now you can see that in the first … Read more