Skip to content

Instantly share code, notes, and snippets.

@Bradshaw
Created March 17, 2019 10:58
Show Gist options
  • Save Bradshaw/49aa6e0ddabd46ad3bcc7e03d97abcf5 to your computer and use it in GitHub Desktop.
Save Bradshaw/49aa6e0ddabd46ad3bcc7e03d97abcf5 to your computer and use it in GitHub Desktop.
Array.prototype.union = function (array) {
var conc = this.concat(array);
return conc.filter(function (item, pos) {return conc.indexOf(item) == pos})
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment