📜  从 js 中的数组中删除元素 - Javascript 代码示例
📅  最后修改于: 2022-03-11 15:03:26.702000             🧑  作者: Mango
代码示例6
let a=[1,2,3,4,5,6,7,8]
//if we want to remove an element with index x
a.splice(x,1)