洛达什 | _.tail()函数
_.tail() 方法用于创建一个不包含原始数组第一个元素的新数组。
句法:
_.tail( array )
参数:此方法接受上面提到的单个参数,如下所述:
- array:此参数保存查询数组。
返回值:此方法返回数组的切片。
示例 1:
const _ = require('lodash');
let x = [1, 2, 3, 4, 5, 6, 7]
let newArray = _.tail(x);
console.log(newArray);
在这里, const _ = require('lodash')
用于将 lodash 库导入文件。
输出:
[ 2, 3, 4, 5, 6, 7 ]
示例 2:
const _ = require('lodash');
let x = [
{'name': 'lodash'},
{'name': 'npm'},
{'name': 'nodejs'}
]
let newArray = _.tail(x);
console.log(newArray);
输出:
[ { name: 'npm' }, { name: 'nodejs' } ]
例子:
const _ = require('lodash');
let x = [1, 2, 'a', {'name': 'hello'}]
let newArray = _.tail(x);
console.log(newArray);
输出:
[ 2, 'a', { name: 'hello' } ]
注意:这在普通 JavaScript 中不起作用,因为它需要安装库 lodash。
参考: https://lodash.com/docs/4.17.15#tail