What is mean by Filter in AngularJS ? A filter is presenting format of value. It's like Date, String, Currency, Number and etc. Filter where using two place 1. Template 2. Controller or Service or Factory List of Filter in angularjs : 1. currency - It will present into currency format(Like $2000.00 , 2300.040) 2. number - It will present into number a text 3. date - It converted to string format 4. uppercase - String converted to uppercase 5. lowercase - String converted to lowercase 6. json - javascript object converted into json object 7. orderBy - Starting array of listed data. 8. limitTo - Specific number of element will store in array Filter in Controller Example: <html> <head> <title> My First Example </title> </head>...