常用删除数组项

32 阅读1分钟
let arr = [0,1,2,3,4]
    arr.splice(0, 1)
    console.log(arr);

对数组内的子数组也有效果 image.png