angular 10 get unique values from array of objects

Solutions on MaxInterview for angular 10 get unique values from array of objects by the best coders in the world

showing results for - "angular 10 get unique values from array of objects"
Philipp
04 Oct 2016
1Array.from(new Set(yourArray.map((item: any) => item.name)));