Answers for "maintain a unique list javascript"

18

array unique values javascript

const myArray = ['a', 1, 'a', 2, '1'];
const unique = [...new Set(myArray)]; // ['a', 1, 2, '1']
Posted by: Guest on March-03-2020
2

javascript get distinct values from array

const categories = ['General', 'Exotic', 'Extreme', 'Extreme', 'General' ,'Water', 'Extreme']
.filter((value, index, categoryArray) => categoryArray.indexOf(value) === index);

This will return an array that has the unique category names
['General', 'Exotic', 'Extreme', 'Water']
Posted by: Guest on April-03-2020

Code answers related to "maintain a unique list javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language