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

deleArr(arr) {
let m = arr.slice(0);
m.shift();
return m;
},

猜你喜欢

转载自www.cnblogs.com/yn-cn/p/9212194.html