//定义一个函数,删除首个数组元素

deleArr(arr) {
let m = arr.slice(0);
m.shift();
return m;
},
原文地址:https://www.cnblogs.com/yn-cn/p/9212194.html