🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 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] ```