Get the unique items in data.
data
uniqueItems([1, 2, 2, 3]); // [1, 2, 3] Copy
uniqueItems([1, 2, 2, 3]); // [1, 2, 3]
Get the unique items in
data.