Skip to content

Instantly share code, notes, and snippets.

View eddyruiz's full-sized avatar

Eddy Ruiz eddyruiz

  • Los Angeles, CA
View GitHub Profile
@eddyruiz
eddyruiz / mob-coding-challenge.js
Created July 13, 2017 02:40 — forked from LearningNerd/mob-coding-challenge.js
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) {
// STEP 1: Access other arguments with arguments obj
@eddyruiz
eddyruiz / mob-coding-challenge.js
Created July 13, 2017 02:38 — forked from LearningNerd/mob-coding-challenge.js
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) {
// STEP 1: Access other arguments with arguments obj
@eddyruiz
eddyruiz / mob-coding-challenge.js
Created July 13, 2017 02:36 — forked from LearningNerd/mob-coding-challenge.js
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) {
// STEP 1: Access other arguments with arguments obj
@eddyruiz
eddyruiz / mob-coding-challenge.js
Created July 13, 2017 02:34 — forked from LearningNerd/mob-coding-challenge.js
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) {
// STEP 1: Access other arguments with arguments obj
@eddyruiz
eddyruiz / mob-coding-challenge.js
Created July 13, 2017 02:32 — forked from LearningNerd/mob-coding-challenge.js
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) {
// STEP 1: Access other stuf with arguments obj
@eddyruiz
eddyruiz / mob-coding-challenge.js
Created July 13, 2017 02:30 — forked from LearningNerd/mob-coding-challenge.js
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) {
// STEP 1: Access other stuf with arguments obj
@eddyruiz
eddyruiz / mob-coding-challenge.js
Created July 13, 2017 02:28 — forked from LearningNerd/mob-coding-challenge.js
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) {
// STEP 1: Access other stuf with arguments obj
@eddyruiz
eddyruiz / mob-coding-challenge.js
Created July 13, 2017 02:26 — forked from LearningNerd/mob-coding-challenge.js
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) {
// STEP 1: Access other stuf with arguments obj
@eddyruiz
eddyruiz / mob-coding-challenge.js
Created July 13, 2017 02:24 — forked from LearningNerd/mob-coding-challenge.js
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.
*/
function destroyer(arr) {
// Remove all the values
return arr;
}
@eddyruiz
eddyruiz / mob-coding-challenge.js
Created July 13, 2017 02:22 — forked from LearningNerd/mob-coding-challenge.js
A saved mob programming session with Learn Teach Code!
// CHALLENGE: https://www.freecodecamp.org/challenges/seek-and-destroy
/*
You will be provided with an initial array
(the first argument in the destroyer function),
followed by one or more arguments.
Remove all elements from the initial array that
are of the same value as these arguments.
*/