AngularJS Filters Complete Reference Last Updated : 01 Nov, 2023 Comments Improve Suggest changes Like Article Like Report Filters are added in the AngularJS for the sake of making the formatting and working with data easier. Filters are used to format the value of an expression for a display to the user. The Complete List of filters are listed below: Filters Description AngularJS Filters There are some filters that are added in the AngularJS for the sake of making the formatting and working with data easier. AngularJS currency Filter AngularJS currency filter is used to convert a number into a currency format. If no currency format is specified currency filter uses the local currency format. AngularJS date Filter AngularJS date filter is used to convert a date into a specified format. When the date format is not specified, the default date format is ‘MMM d, yyyy’ AngularJS filter Filter The “filter” Filter in AngularJS is used to filter the array and object elements and return the filtered items. AngularJS json Filter The “filter” Filter in AngularJS is used to filter the array and object elements and return the filtered items. AngularJS limitTo Filter The limitTo filter in AngularJS is used to return an array or a string that contains a specified number of elements. AngularJS lowercase Filter AngularJS provides different filters to format the data. AngularJS number Filter AngularJS number filter is used to convert a number into a string or text. AngularJS orderBy Filter An orderBy Filter in AngularJS is used to sort the given array to the specific order. AngularJs uppercase Filter The uppercase Filter in AngularJS is used to change a string to an uppercase string or letters. Comment More infoAdvertise with us Next Article AngularJS Filters Complete Reference K kartik Follow Improve Article Tags : Web Technologies AngularJS AngularJS-Filter Similar Reads AngularJS Directives Complete Reference Directives are markers in the Document Object Model(DOM). Directives can be used with any of controller or HTML tag which will tell the compiler what exact operation or behavior is expected. There are some directives present which is predefined but if a developer wants he can create new directives ( 2 min read Angular PrimeNG Form Complete Reference Angular PrimeNG Form facilitates the various input components for taking the input field & validating, which helps to design a responsive form for a single-page-application, that enhances the user experience, along with increasing the user interactivity in the Web application. There are various 15+ min read Angular PrimeNG FilterService Component Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. It provides a lot of templates, components, theme design, an extensive icon library, and much more. 7 min read Angular PrimeNG Utilities Complete Reference Angular PrimeNG Utilities facilitates the service that helps to filter the collections by including the constraints within the Table. The complete list of Utility Components is listed below with their brief description: FilterService ComponentThe Filter Service Component is a helper utility that hel 1 min read AngularJS filter Filter The "filter" Filter in AngularJS is used to filter the array and object elements and return the filtered items. In other words, this filter selects a subset (a smaller array containing elements that meet the filter criteria) of an array from the original array. Syntax: {{arrayexpression | filter: ex 3 min read Like