AngularJS

AngularJS Directives

AngularJS Filters and Elements

AngularJS Tutorials

Filters in AngularJS

Filters

 

 

Filters are used to format data. In AngularJS, filters can be added to expressions by using the pipe character "|", followed by a filter.

 

The list of filters is:-

 

  • currency Format a number to a currency format.
  • date Format a date to a specified format.
  • filter Select a subset of items from an array.
  • json Format an object to a JSON string.
  • limitTo Limits an array/string, into a specified number of elements/characters.
  • lowercase Format a string to lowercase.
  • number Format a number to a string.
  • orderBy Orders an array by an expression.
  • uppercase Format a string to uppercase.

Code Explanation

All Tutorials related to AngularJS Tutorials

All Sections related to AngularJS