Answers for "get key array using array unique"

3

javascript get unique values from key

const unique = [...new Set(array.map(item => item.age))];
Posted by: Guest on June-05-2020
0

find unique value on array

const a = [1, 9, 2, 2, 3, 4, 1, 7, 8, 0, 9, 0, 1, 5, 3];

const b = a.filter(function (item, index, array) {
    return array.lastIndexOf(item) === index; // this will return the unique elements
});
Posted by: Guest on December-27-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language