Skip to content

Instantly share code, notes, and snippets.

@ttepasse
Forked from tobiastom/gist:387571
Created May 3, 2010 00:14
Show Gist options
  • Save ttepasse/387575 to your computer and use it in GitHub Desktop.
Save ttepasse/387575 to your computer and use it in GitHub Desktop.
Array.prototype.unique = function() {
var uniqueKeys = {},
uniqueArray = [],
items = this.length
while (items)
uniqueKeys[this[--items]] = true
for (var key in uniqueKeys)
if (uniqueKeys.hasOwnProperty(key)) uniqueArray.push(key)
return uniqueArray
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment