Answers for "how to find unique value in array"

5

how to find unique elements in array in javascript

let a = ["1", "1", "2", "3", "3", "1"];
let unique = a.filter((item, i, ar) => ar.indexOf(item) === i);
console.log(unique);
Posted by: Guest on May-17-2020
1

find unique values between multiple array

var array3 = array1.filter(function(obj) { return array2.indexOf(obj) == -1; });
Posted by: Guest on May-01-2020

Code answers related to "how to find unique value in array"

Browse Popular Code Answers by Language