Answers for "how to check to see if there are any unique numbers in array js"

17

javascript find unique values in array

// usage example:
var myArray = ['a', 1, 'a', 2, '1'];
var unique = myArray.filter((v, i, a) => a.indexOf(v) === i); 

// unique is ['a', 1, 2, '1']
Posted by: Guest on February-28-2020
8

check if array has unique values javascript

const allEqual = arr => arr.every(v => v === arr[0]);
allEqual([1,1,1,1]);  // true
Posted by: Guest on May-27-2020

Code answers related to "how to check to see if there are any unique numbers in array js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language