返回一个数组中除了最后一个元素以外的所有元素。
使用 arr.slice(0,-1) 返回排除了最后一个元素的数组。
arr.slice(0,-1)
const initial = arr => arr.slice(0, -1);
initial([1, 2, 3]); // [1,2]