数组(Arrays)lastlast_.last(array, [n])返回 array(数组)中最后一个元素。传递 n 参数将返回数组中从最后一个元素开始的 n 个元素(注:返回数组里的后面的 n 个元素)。_.last([5, 4, 3, 2, 1]);=> 1