remove
最后更新于:2022-04-01 23:58:28
## remove
+ [link](./remove "Link to this entry.")
+ [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L6366 "View in source.")
+ [npm](https://www.npmjs.com/package/lodash.remove "See the npm package.")
```
_.remove(array, [predicate=_.identity])
```
移除经过 `predicate` 处理为真值的元素,并返回被移除的元素。predicate 会传入3个参数:(value, index, array)
**注意:** Unlike `_.filter`,这个方法会改变数组。
### 参数
1. array (Array)
需要调整的数组
2. [predicate=_.identity] (Function|Object|string)
这个函数会处理每一个元素
### 返回值 (Array)
返回被移除的元素的数组
### 示例
```
var array = [1, 2, 3, 4];
var evens = _.remove(array, function(n) {
return n % 2 == 0;
});
console.log(array);
// => [1, 3]
console.log(evens);
// => [2, 4]
```
';