InterviewSolution
Saved Bookmarks
| 1. |
What is the use of a filter in AngularJS? |
|
Answer» <P>It is used to FORMAT the value of the expression to display the output. AngularJS enables us to apply filter. It can be added to expressions by using the pipe character |, followed by a filter. Example<div ng-app="myApp" ng-controller="personCtrl"> |
|