Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,089 questions

40,774 answers

573 users

How to use an array of objects in AngularJS

1 Answer

0 votes
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<body>

<div ng-app="" ng-init="programmers=[
{name:'Tom',salary:7800},
{name:'Ashly',salary:8500},
{name:'Axel.',salary:11000},
{name:'Elle',salary:9000}]">

<p>objects loop:</p>
<ul>
  <li ng-repeat="s in programmers">
  {{ s.name + ', $' + s.salary }}</li>
</ul>

</div>

</body>
</html>


<!--
run:

objects loop:

    Tom, $7800
    Ashly, $8500
    Axel., $11000
    Elle, $9000
    
-->

 





answered May 20, 2017 by avibootz

Related questions

2 answers 204 views
1 answer 152 views
1 answer 158 views
1 answer 153 views
...