What is the meaning of the singular/plural syntax in, say, ng-repeat="product in store.products"
?
Confused by AngularJS ng-repeat syntax
2.9k Views Asked by dpren At
3
There are 3 best solutions below
0

This is essentially the same syntax as a Javascript for...in loop. It means for someTempVar in someArrayOrObject
.
Singular/plural is used just for common sense and code readability - it doesn't have to be singular/plural. You can do
and then have the
whatever
object available inside (like:<img ng-src="{{whatever.images[0]}}" />
).In your case,
store.products
can't be changed since it refers to an actual object, whileproduct
is a completely custom name to be used in the repeat loop.Fairly common in programming. Like the other answer said, it's similar to the for..in syntax.