without

without(value...) -> newArray

Produces a new version of the array that does not contain any of the specified values.

Example

[3, 5, 6, 1, 20].without(3)
// -> [5, 6, 1, 20]

[3, 5, 6, 1, 20].without(20, 6)
// -> [3, 5, 1]