-
-
Save duggiemitchell/d0e37dacc322f540e783 to your computer and use it in GitHub Desktop.
http://www.freecodecamp.com/duggiemitchell 's solution for Bonfire: Seek and Destroy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Bonfire: Seek and Destroy | |
| // Author: @duggiemitchell | |
| // Challenge: http://www.freecodecamp.com/challenges/bonfire-seek-and-destroy | |
| // Learn to Code at Free Code Camp (www.freecodecamp.com) | |
| function destroyer(arr) { | |
| var argCombo = arr.slice.call(arguments); | |
| console.log(argCombo.splice(0,1)); | |
| return arr.filter(function(chr) { | |
| return argCombo.indexOf(chr) === -1; | |
| } | |
| ); | |
| } | |
| destroyer([1, 2, 3, 1, 2, 3], 2, 3); |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Fist, we must turn the arguments into an array using
arr.slice.call(arguments);and assign to the variableargComboThe splice method modifies the
argComboarray and returns the deleted elements as a new array ``console.log(argCombo.splice(0,1)); //output: [1,1]Now, using the
filter()function onarrto remove elements we dont want and return ones we wish to keep. In this case,chris assigned to elements in array will returnchrthat are=== -1sincefilter()returns -1 (orfalse) forchrthat are not present in the array