Without, returns an array with all values parameters removed from the input array
array
(Array): input arrayvalues
(...*): input values
(Array): an array of unique values
const result = arrays.without(['a', 'b', 'c', ['d']], 'b', ['d']);
console.log(result);
> ['a', 'c', ['d']]