SyntaxFix
Write A Post
Hire A Developer
Questions
I can grep the array for the id, but how can I delete the entire object where id == 88
Simply filter by the opposite predicate:
var data = $.grep(data, function(e){ return e.id != id; });