drop
最后更新于:2022-04-01 23:57:31
## drop
+ [link](./drop "Link to this entry.")
+ [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L5682 "View in source.")
+ [npm](https://www.npmjs.com/package/lodash.drop "See the npm package.")
```
_.drop(array, [n=1])
```
裁剪数组中的前 N 个数组,返回剩余的部分。
### 参数
1. array (Array)
需要处理的数组
2. [n=1] (number)
裁剪的个数
### 返回值 (Array)
返回数组的剩余的部分。
### 示例
```
_.drop([1, 2, 3]);
// => [2, 3]
_.drop([1, 2, 3], 2);
// => [3]
_.drop([1, 2, 3], 5);
// => []
_.drop([1, 2, 3], 0);
// => [1, 2, 3]
```
';