Skip to content

Instantly share code, notes, and snippets.

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