PHP
·
发表于 5年以前
·
阅读量:8290
返回除最后一个数组之外的所有元素。
使用 "arr.slice(0,-1)
" 返回数组的最后一个元素。
const initial = arr => arr.slice(0, -1);
// initial([1,2,3]) -> [1,2]