Skip to main content

Posts

Showing posts with the label LowerCasePipe

What Are Inbuilt Pipes in Angular?

Angular defines various Pipes API lists  – That is called Inbuilt Pipes. 1)        DatePipe 2)        CurrencyPipe 3)        AsyncPipe 4)        DecimalPipe 5)        PercentPipe 6)        UpperCasePipe 7)        LowerCasePipe 8)        TitleCasePipe 9)        JsonPipe 10)    SlicePipe 11)    I18nSelectPipe 12)    And many more Similarly, you can also create a custom pipe (as per your needs) and configure in a module that is globally available in across angular apps. Angular DatePipe  - The DatePipe is used to format a date with the help of locale rules. {{  value_expression  |  date  [ :  format  [ :  timezon...