filters an array for duplicate items and returns all unique items in a new array
summary (oneliner)
when given an array with "non" unique items, like:
const a = [
"maus",
"hund",
"maus",
"katze",
"maus",
];
will return only the unique values in that array, as a new array, so:
const a = [
"hund",
"katze",
"maus",
];
doc
issues
example patch id
youtube ids (comma seperated)
caniuse query
collections
Inputs
array (Array)
input array
Format index (integer /Number)
choose between 3 different unique modes: x, xy, xyz
Format (String)
choose between 3 different unique modes: x, xy, xyz
Outputs
arrayOut (Array)
deduped array output
Array Length Out (Number)
length of the new array