arrays.pull acc export function pull *(array(array, values)* Pull removes all of the given values from an array Arguments array (T[]): input array values (...*): values to be removed from the array Returns (*): array of with values removed Example const result = arrays.pull([1, 2, 3, 4], 2, 4); console.log(result) > [1, 3]