每天学习几个node库 o(^▽^)┛
————————————————————
array-first github链接: https://github.com/jonschlinkert/array-first
这个库提供了获取一个数组前几位的序列的方法,原理是基于javascript对数组的原生方法slice,默认获取数组第一项并返回
tips:
方法中使用了 + 对变量进行隐式转换成整形变量
代码如下:
1 | /*! |
array-last github链接: https://github.com/jonschlinkert/array-last
这个库提供了获取一个数组最后几项的方法,原理是先判断截取数组的长度,如为1,则返回数组序列为数组长度-1的项,否则,降序遍历截取长度作为数组的序列获取被截取数组,返回出最终结果,默认获取数组最后一项并返回
1 | /*! |