通过检索元素的索引,然后使用splice函数进行删除(splice函数会操作原数组).
let theArray = [2, 5, 9];
let index = theArray.indexOf(5);
if (index > -1) {
theArray.splice(index, 1);
}
通过检索元素的索引,然后使用splice函数进行删除(splice函数会操作原数组).
let theArray = [2, 5, 9];
let index = theArray.indexOf(5);
if (index > -1) {
theArray.splice(index, 1);
}
评论