JSFiddle - React, Tailwind, and code Playground

JavaScript

var data = [
{"id":"88","name":"Lets go testing"},
{"id":"99","name":"Have fun boys and girls"},
{"id":"108","name":"You are awesome!"}
]

var id = 99;

var result = $.grep(data, function(e, i){ 
  return +e.id !== id;
});

console.log(result)