Lodash - head 方法



语法

_.head(array)

获取数组的第一个元素。

参数

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

输出

  • (*) − 返回数组的第一个元素。

示例

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

var result = _.head(list)
console.log(result);

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

命令

\>node tester.js

输出

1
lodash_array.htm
广告