Skip to content

Instantly share code, notes, and snippets.

Created December 3, 2015 02:18
Show Gist options
  • Save anonymous/8e2a9aa3a69a7c23a2fc to your computer and use it in GitHub Desktop.
Save anonymous/8e2a9aa3a69a7c23a2fc to your computer and use it in GitHub Desktop.
http://www.freecodecamp.com/nirajkrz 's solution for Bonfire: Seek and Destroy
// Bonfire: Seek and Destroy
// Author: @nirajkrz
// Challenge: http://www.freecodecamp.com/challenges/bonfire-seek-and-destroy
// Learn to Code at Free Code Camp (www.freecodecamp.com)
function destroyer(arr) {
// Remove all the values
var args = Array.prototype.slice.call(arguments);
args.splice(0,1);
return arr.filter(function(element) {
return args.indexOf(element) === -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