dropWhile
最后更新于:2022-04-01 23:57:38
## dropWhile
+ [link](./dropWhile "Link to this entry.")
+ [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L5797 "View in source.")
+ [npm](https://www.npmjs.com/package/lodash.dropwhile "See the npm package.")
```
_.dropWhile(array, [predicate=_.identity])
```
裁剪数组,起点从 `predicate` 返回假值开始。`predicate` 会传入3个参数:(value, index, array)。
### 参数
1. array (Array)
array 需要处理的数组
2. [predicate=_.identity] (Function|Object|string)
这个函数会在每一次迭代调用
### 返回值 (Array)
Returns the slice of `array`.
### 示例
```
var users = [
{ 'user': 'barney', 'active': false },
{ 'user': 'fred', 'active': false },
{ 'user': 'pebbles', 'active': true }
];
_.dropWhile(users, function(o) { return !o.active; });
// => 结果: ['pebbles']
// 使用了 `_.matches` 的回调处理
_.dropWhile(users, { 'user': 'barney', 'active': false });
// => 结果: ['fred', 'pebbles']
// 使用了 `_.matchesProperty` 的回调处理
_.dropWhile(users, ['active', false]);
// => 结果: ['pebbles']
// 使用了 `_.property` 的回调处理
_.dropWhile(users, 'active');
// => 结果: ['barney', 'fred', 'pebbles']
```
';