Angular10 SlicePipe Last Updated : 10 Apr, 2023 Comments Improve Suggest changes Like Article Like Report In this article, we are going to see what is SlicePipe in Angular 10 and how to use it. SlicePipe is used to create an array containing a slice of the element. Syntax: {{ value | SlicePipe }} NgModule: Module used by SlicePipe is: CommonModule Approach: Create the angular app to be usedThere is no need for any import for the SlicePipe to be usedIn app.component.ts define the variables that takes the SlicePipe value.In app.component.html use the above syntax with '|' symbol to make SlicePipe element.Serve the angular app using ng serve to see the output Input value: value: it takes a string value. Parameters: start: it takes a number value.end: it takes a number value. Example 1: Filename: app.component.ts javascript import { Component } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent { collection: string[] = ['geeks', 'for', 'geeks', 'gfg']; } Filename: app.component.html html <ul> <li *ngFor="let i of collection | slice:0:3">{{i}}</li> </ul> Output: Example 2: Filename: app.component.ts javascript import { Component } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent { collection: string[] = ['geeks', 'for', 'geeks', 'gfg']; } Filename: app.component.html html <ol> <li *ngFor="let i of collection | slice:0:4">{{i}}</li> </ol> Output: Comment More infoAdvertise with us Next Article Angular10 SlicePipe T taran910 Follow Improve Article Tags : Web Technologies AngularJS AngularJS-Basics Angular10 Similar Reads Angular10 JsonPipe In this article, we are going to see what is JsonPipe in Angular 10 and how to use it. JsonPipe is used to convert an object its JSON representation Syntax: {{ value | json}} NgModule: Module used by JsonPipe is: CommonModule Approach: Create the angular app to be usedThere is no need for any impor 2 min read Angular10 LowerCasePipe In this article, we are going to see what is LowerCasePipe in Angular 10 and how to use it. The LowerCasePipe is used to Transforms all the text to lowercase. Syntax: {{ value | lowercase }} NgModule: Module used by LowercaseCasePipe is: CommonModule Approach: Create the angular app to be usedThere 1 min read Angular10 TitleCasePipe In this article, we are going to see what is TitleCasePipe in Angular 10 and how to use it. TitleCasePipe is used to Transforms all the text to titlecase. Syntax: {{ value | TitleCasePipe }} NgModule: Module used by TitleCasePipe is: CommonModule Approach: Create the angular app to be usedThere is 1 min read Angular10 percentPipe In this article, we are going to see what is percentPipe in Angular 10 and how to use it. The percentPipe is used to Transform a number to a percentage string. Syntax: {{ value | percent [ : digitsInfo [ : locale ] ] }} NgModule: Module used by percentPipe is: CommonModule Approach: Create the angul 2 min read Pipes in Angular Pipes are often used for formatting dates, numbers, and Strings and they can be customized to suit various needs. In this article, we explain about how to use pipes in Angular with examples and related outputs for your reference.Prerequisites:To understand this article you should have knowledge of t 8 min read Like