Skip to content

Instantly share code, notes, and snippets.

@mihneawalker
Last active May 28, 2016 06:52
Show Gist options
  • Save mihneawalker/b62ad4806a3170c60827ba0fc10daf41 to your computer and use it in GitHub Desktop.
Save mihneawalker/b62ad4806a3170c60827ba0fc10daf41 to your computer and use it in GitHub Desktop.
function destroyer(arr) {
// var argss = [...arr];
var argss = Array.from(arguments);
initial = argss[0];
values = argss.slice(1);
console.log(initial, "===", values);
return initial.filter( function(index){
return values.indexOf(index) == -1;
});
}
destroyer([1, 2, 3, 1, 2, 3], 2, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment