initial
最后更新于:2022-04-01 23:58:00
## initial
+ [link](./initial "Link to this entry.")
+ [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L6072 "View in source.")
+ [npm](https://www.npmjs.com/package/lodash.initial "See the npm package.")
```
_.initial(需要检索的数组)
```
获取数组中除了最后一个元素之外的所有元素
### 参数
1. 需要检索的数组 (Array)
### 返回值 (Array)
返回没有最后一个元素的数组
### 示例
```
_.initial([1, 2, 3]);
// => [1, 2]
```
';