rest_.rest(array, [index])Aliases: tail, drop返回数组中除了第一个元素外的其他全部元素。传递 index 参数将返回从 index 开始的剩余所有元素 。_.rest([5, 4, 3, 2, 1]);=> [4, 3, 2, 1]Copy