Remove an item from an array.
Mutates the array
const arr = [1, 2, 3, 4, 5, 6, 7, 8, 9]const success = removeInPlace(arr, i => i === 5) // => [1, 2, 3, 4, 6, 7, 8, 9]success // => 5 Copy
const arr = [1, 2, 3, 4, 5, 6, 7, 8, 9]const success = removeInPlace(arr, i => i === 5) // => [1, 2, 3, 4, 6, 7, 8, 9]success // => 5
Description
Remove an item from an array.
Remarks
Mutates the array
Example