From 30b8f44cd1b0efe54f4bf8c196f860d0accf769a Mon Sep 17 00:00:00 2001 From: Nidhish1407 Date: Thu, 27 Aug 2020 16:12:33 +0530 Subject: [PATCH] Added solution for removeFromArray --- removeFromArray/removeFromArray.js | 11 +++++++++-- removeFromArray/removeFromArray.spec.js | 12 ++++++------ 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/removeFromArray/removeFromArray.js b/removeFromArray/removeFromArray.js index 11efd5c..f7cce88 100644 --- a/removeFromArray/removeFromArray.js +++ b/removeFromArray/removeFromArray.js @@ -1,5 +1,12 @@ -const removeFromArray = function() { - +const removeFromArray = function(arr,...args) { + //[...args] + let newArr = []; + arr.forEach(element => { + if(!args.includes(element)) + newArr.push(element); + }); + // console.log(newArr); + return newArr; } module.exports = removeFromArray diff --git a/removeFromArray/removeFromArray.spec.js b/removeFromArray/removeFromArray.spec.js index f60239a..0fc7b78 100644 --- a/removeFromArray/removeFromArray.spec.js +++ b/removeFromArray/removeFromArray.spec.js @@ -4,22 +4,22 @@ describe('removeFromArray', function() { it('removes a single value', function() { expect(removeFromArray([1, 2, 3, 4], 3)).toEqual([1, 2, 4]); }); - xit('removes multiple values', function() { + it('removes multiple values', function() { expect(removeFromArray([1, 2, 3, 4], 3, 2)).toEqual([1, 4]); }); - xit('ignores non present values', function() { + it('ignores non present values', function() { expect(removeFromArray([1, 2, 3, 4], 7, "tacos")).toEqual([1, 2, 3, 4]); }); - xit('ignores non present values, but still works', function() { + it('ignores non present values, but still works', function() { expect(removeFromArray([1, 2, 3, 4], 7, 2)).toEqual([1, 3, 4]); }); - xit('can remove all values', function() { + it('can remove all values', function() { expect(removeFromArray([1, 2, 3, 4], 1, 2, 3, 4)).toEqual([]); }); - xit('works with strings', function() { + it('works with strings', function() { expect(removeFromArray(["hey", 2, 3, "ho"], "hey", 3)).toEqual([2, "ho"]); }); - xit('only removes same type', function() { + it('only removes same type', function() { expect(removeFromArray([1, 2, 3], "1", 3)).toEqual([1, 2]); }); });