Node.js examples for Array:Remove Element
Remove element from an array
arrayRemove: function (array, item) { if (!array || !item) { return;// w w w .ja v a 2s . co m } var idx = array.indexOf(item); if (idx !== -1) { array.splice(idx, 1); } },