Skip to content

Files

Latest commit

c501b32 · Sep 20, 2017

History

History

removeFromArray

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Sep 20, 2017
Sep 20, 2017
Sep 20, 2017

Exercise 04 - removeFromArray

Implement a function that takes an array and some other arguments then removes the other arguments from that array:

remove([1,2,3,4], 3) // should remove 3 and return [1,2,4]