Computer Science, asked by sunepla2868, 1 year ago

How to use filter with more than one parameter in angular?

Answers

Answered by anmoldeep268gmailcom
0
In the previous article I used the following HTML markup with AngularJS to loop through an array of users to display their Name and Location:

<div ng-app="myApp" ng-controller="myController">
<ul>
<li ng-repeat="user in users">{{user.Name}} | {{user.Location}}</li>
</ul>
</div>
Similar questions