Home
Tutorials
Microsoft Technologies Tutorials
Java Programming Tutorials
Web Designing Tutorials
Script Programming Tutorials
Database Programming Tutorials
Mobile Technologies Tutorials
Other Programming Tutorials
Examples
Articles
Tools
News
AngularJS Ng-Repeat Example
Keywords : Angularjs ngrepeat directive example, Bind Data to table using ng-repeat in angularjs with example, Angularjs ngrepeat directive to loop through json array element
Example
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> AngularJs ng-repeat Directive Example </title> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script> </head> <body ng-app=""> <div ng-init="employees=['Suresh','Rohini','Praveen','Sateesh']"> <p>Employee Details:</p> <ul> <li ng-repeat="name in employees"> {{ name }} </li> </ul> </div> </body> </html>
Click Here to See Result
Result
Previous
Next