Skip to content

Instantly share code, notes, and snippets.

@bendc
Last active February 5, 2021 16:57
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bendc/da83fdac68a1095f3595 to your computer and use it in GitHub Desktop.
Save bendc/da83fdac68a1095f3595 to your computer and use it in GitHub Desktop.
Remove duplicates from array
function removeDuplicates(arr) {
var clean = []
var cleanLen = 0
var arrLen = arr.length
for (var i = 0; i < arrLen; i++) {
var el = arr[i]
var duplicate = false
for (var j = 0; j < cleanLen; j++) {
if (el !== clean[j]) continue
duplicate = true
break
}
if (duplicate) continue
clean[cleanLen++] = el
}
return clean
}
@fediro
Copy link

fediro commented Feb 5, 2021

Thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment