📌  相关文章
📜  js 从数组中删除特定项目 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:23.380000             🧑  作者: Mango

代码示例1
var colors = ["red","blue","car","green"];
var carIndex = colors.indexOf("car");//get  "car" index
//remove car from the colors array
colors.splice(carIndex, 1); // colors = ["red","blue","green"]