Answers for "filter function to find unique values in array"

0

Filtering an array for unique values

const my_array = [1, 2, 2, 3, 3, 4, 5, 5]
const unique_array = [...new Set(my_array)];
console.log(unique_array); // [1, 2, 3, 4, 5]
Posted by: Guest on November-21-2020
0

get an array with unique values

function onlyUnique(value, index, self) {
  return self.indexOf(value) === index;
}

// usage example:
var a = ['a', 1, 'a', 2, '1'];
var unique = a.filter(onlyUnique);

console.log(unique); // ['a', 1, 2, '1']
Posted by: Guest on March-16-2021

Code answers related to "filter function to find unique values in array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language