Returns an array with all the duplicates removed
array with unique elements
let a = [1,1,2,3,3];utilArrayUniq(a) // returns: [1,2,3] Copy
let a = [1,1,2,3,3];utilArrayUniq(a) // returns: [1,2,3]
Returns an array with all the duplicates removed