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]
without(value...) -> newArray
Produces a new version of the array that does not contain any of the specified values.
[3, 5, 6, 1, 20].without(3)
// -> [5, 6, 1, 20]
[3, 5, 6, 1, 20].without(20, 6)
// -> [3, 5, 1]