Array of any values.
Value to remove from array.
New array without value.
arrayBasicPull
Remove all occurrences of value from array. Creates new array.
arrayBasicPull([1, 2, 3, 4, 5, 3, 6, 7, 3, 9], 3); // [1, 2, 4, 5, 6, 7, 9] Copy
arrayBasicPull([1, 2, 3, 4, 5, 3, 6, 7, 3, 9], 3); // [1, 2, 4, 5, 6, 7, 9]
Array of any values.