Removes one or more elements from an array
arrEject([1, 2, 3, 4], 2);=> [1, 3, 4]
An array
A single element or an array of elements to eject
Whether to mutate the original array
Generated using TypeDoc
Removes one or more elements from an array
Example