I have an array($rootScope.language);
of objects that look like this:
[{name: "Oskar", lastname: "Doe"},{name: "John", lastname: "Steward"}]
I want to loop through all of them in my template. I tried this:
<div ng-repeat="entry in language"> <p>{{name}} {{lastname}}</p> </div>
This outputs nothing and I don't get any errors. What am I missing?