diff --git a/04_removeFromArray/removeFromArray.js b/04_removeFromArray/removeFromArray.js index 0324046..6d4de17 100644 --- a/04_removeFromArray/removeFromArray.js +++ b/04_removeFromArray/removeFromArray.js @@ -9,6 +9,13 @@ const removeFromArray = function([array], args) { }; +// NEXT need to find way to compare the two arrays +// i.e. compare "array" and "args" +// and check for duplicates.. +// and remove the duplicate from the first array +// and finally return the new version of the first array +// check for methods here: https://dev.to/soyleninjs/3-ways-to-remove-duplicates-in-an-array-in-javascript-259o + // const removeFromArray = function() {};