Appearance
获取数组的第一个元素。
0.1.0
_.first
array (Array): 要查询的数组。
array (Array)
(*): 返回数组的第一个元素。
_.head([1, 2, 3]); // => 1 _.head([]); // => undefined