Answers for "how to remove the duplicate values in array object using angular 10"

1

remove duplicates objects from array angular

this.item = this.item.filter((el, i, a) => i === a.indexOf(el))
Posted by: Guest on June-14-2021
0

remove duplicate values in array angular

<option *ngFor="let i of taxlist | unique" [value]="i.tax_name {{i.tax_name}}   ( {{i.tax_percentage}}% )</option>
Posted by: Guest on November-14-2021

Code answers related to "how to remove the duplicate values in array object using angular 10"

Code answers related to "Javascript"

Browse Popular Code Answers by Language