Consider I have a few objects, each of them having the properties x, y and z.
Now consider I have the following Angular ng-repeat:
<div ng-repeat="obj in objs">
Values are: {{ obj.x }}, {{ obj.y }} and {{ obj.z }}
</div>
Is there any way I can implicitly use the obj variable, so I could do:
<div ng-repeat="obj in objs">
Values are: {{ x }}, {{ y }} and {{ z }}
</div>