Answer: Below is the procedure to loop through data in Angular JS
<div data-ng-app="" data-ng-init="names=['DotnetFunda','TechFunda','SQLFunda','ITFunda']">
<b>Loop Example:</b>
<br />
<ul>
<li data-ng-repeat="x in names">
{{ x }}
</li>
</ul>
</div>
Asked In: Many Interviews |
Alert Moderator