Skip to content

Instantly share code, notes, and snippets.

@halityurttas
Created August 3, 2019 08:19
Show Gist options
  • Save halityurttas/72020cd7bafc76edd69334508f691395 to your computer and use it in GitHub Desktop.
Save halityurttas/72020cd7bafc76edd69334508f691395 to your computer and use it in GitHub Desktop.
Javascript array unique
Array.prototype.unique = function() {
return this.filter(function (value, index, self) {
return self.indexOf(value) === index;
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment