remove object from array using splice code example
Example: how to delete object in array
let array = [1,2,3];
let item = array.indexOf(2)
let deleteCount = 1;
array.splice(item, deleteCount)
let array = [1,2,3];
let item = array.indexOf(2)
let deleteCount = 1;
array.splice(item, deleteCount)