Lodash - nth 方法



语法

_.nth(array, [n=0])

获取数组中除最后一个元素之外的所有元素。

参数

  • array (数组) − 要查询的数组。

  • [n=0] (数字) − 要返回的元素的索引。

输出

  • (*) − 返回 array 的第 n 个元素。

示例

var _ = require('lodash');
var list = [1, 2, 3, 2, 5, 6, 2];

var result = _.nth(list,2)
console.log(result);

var result = _.nth(list,3)
console.log(result);

将以上程序保存在tester.js中。运行以下命令执行此程序。

命令

\>node tester.js

输出

3
2
lodash_array.htm
广告