first_.first(array, [n])Aliases: head, take返回 array (数组)的第一个元素。传递 n 参数将返回数组中从第一个元素开始的 n 个元素(注:返回数组中前 n 个元素.)。_.first([5, 4, 3, 2, 1]);=> 5Copy