Angular KeyValue Pipe Example | KeyValue Pipe in Angular
This article will give you example of angular keyvalue pipe example. let’s discuss about angular keyvalue pipe order. This article will give you simple example of angular ngfor key value pipe. let’s discuss about keyvalue pipe angular. Follow bellow tutorial step of angular keyvalue pipe code.
In this tutorial i will provide you full example and how to use angular keyvalue pipe with ngfor objrct map array. you can use it in angular 6, angular 7, angular 8, angular 9, angular 10, angular 11, angular 12, angular 13, angular 14, angular 15, angular 16 and angular 17 application.
I am not going to explain more and more description but i will simply give you syntax and some small examples so you can easily use it in your application.
Syntax:
{{ input_expression | keyvalue [ : compareFn ] }}
Example
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `<div>
<div *ngFor="let item of myObject | keyvalue">
{{item.key}}:{{item.value}}
</div>
<div *ngFor="let item of myMapArray | keyvalue">
{{item.key}}:{{item.value}}
</div>
</div>`,
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
name = 'Angular';
myObject: {[key: number]: string} = {3: 'Hardik', 2: 'Paresh'};
myMapArray = new Map([[3, 'Hardik'], [2, 'Paresh']]);
}
Output
2:Paresh
3:Hardik
2:Paresh
3:Hardik
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Angular LowerCase Pipe Example | LowerCase Pipe in Angular
- Angular Uppercase Pipe Example | Uppercase Pipe in Angular
- Angular Slice Pipe Example | Slice Pipe in Angular
- Angular Json Pipe Example | Json Pipe in Angular
- Angular Percent Pipe Example | Percent Pipe in Angular
- Angular Decimal Pipe Example | Number Pipe in Angular
- Angular Date Pipe Example | Date Pipe in Angular
- Angular Currency Pipe Example | Currency Pipe in Angular
- How to Use Angular Pipe in Component Class?
- How to Pass Multiple Parameters to Pipe in Angular?
- How to Create Custom Pipe in Angular 9/8?