Array
Removes all instances of the specified value from the array.
Given a list of items, return a new list with all instances of the specified value removed.
import { remove } from 'radash'
const fruits = ['apple', 'banana', 'orange', 'banana', 'grape']
remove(fruits, 'banana') // => ['apple', 'orange', 'grape']