洛达什 | _.head() 方法
_.head() 方法用于获取数组的第一个元素。
句法
_.head( array )
参数:此方法接受上面提到的单个参数,如下所述:
- array:此参数保存查询数组。
返回值:返回数组的第一个元素。
示例 1:
const _ = require('lodash');
let ar = [1, 2, 3, 4, 5]
let first = _.head(ar);
console.log(first)
输出:
1
示例 2:
const _ = require('lodash');
let ar = [{a: 1, b: 2}, {c: 3, d:4}, {e: 5, f: 6}]
let first = _.head(ar);
console.log(first)
输出:
{ a: 1, b: 2 }
示例 3:
const _ = require('lodash');
let ar = []
let first = _.head(ar);
console.log(first)
输出:
undefined
注意:空数组上的 _.head() 方法返回未定义。
注意:这在普通 JavaScript 中不起作用,因为它需要安装库 lodash。
参考: https://lodash.com/docs/4.17.15#head