Skip to content

Instantly share code, notes, and snippets.

@halityurttas
Created August 3, 2019 08:21
Show Gist options
  • Select an option

  • Save halityurttas/52f6891b39cfb9f48c25bf6597e29ff6 to your computer and use it in GitHub Desktop.

Select an option

Save halityurttas/52f6891b39cfb9f48c25bf6597e29ff6 to your computer and use it in GitHub Desktop.
Array difference
Array.prototype.diff = function(a) {
return this.filter(function(i) {return a.indexOf(i) < 0;});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment