Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save LearningNerd/2041866ee31de687ae18bbf9c8889fb1 to your computer and use it in GitHub Desktop.
Save LearningNerd/2041866ee31de687ae18bbf9c8889fb1 to your computer and use it in GitHub Desktop.
A saved mob programming session with Learn Teach Code!
// CHALLENGE: https://www.freecodecamp.org/challenges/seek-and-destroy
/*
GOAL: Remove all elements from the initial array that
are of the same value as these arguments.
*/
// EXAMPLE TEST:
// destroyer([1, 2, 3, 1, 2, 3], 2, 3) should return [1, 1]
function destroyer(arr) {
// loop through arr
// for each item in arr, does it exist inside arguments?
return arr;
}
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