_.head(array)
获得数组的首个元素
array (Array)
要检索的数组
返回数组中的首个元素
_.head([1, 2, 3]); // => 1 _.head([]); // => undefined