JS快速删除数组中制定元素

var ary = ['123','234','345'];
var idx = ary.indexOf('234'); 
var end = ary.splice(idx, 1); 

console.log(end);
console.log(ary);

你可能感兴趣的:(JS快速删除数组中制定元素)