Answers for "unique data in an array"

7

unique values in array javascript

let uniqueItems = [...new Set(items)]
Posted by: Guest on September-06-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 "unique data in an array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language