SyntaxFix
Write A Post
Hire A Developer
Questions
Array.prototype.removeAt = function(id) { for (var item in this) { if (this[item].id == id) { this.splice(item, 1); return true; } } return false; }
This should do the trick, jsfiddle