Skip to content

Instantly share code, notes, and snippets.

@bwoodlt
bwoodlt / array_data_structure.js
Last active April 14, 2021 06:57
A simple array method and data structure
/**
* Removes Duplicates from []
*/
const removeDups = (arr) => {
return arr.filter((f, i) => arr.indexOf(f) === i).sort()
}
/**
* Removes Duplicates from [{}]
*/