naskah naskah menghapus objek dari array

const index = myArray.indexOf(key, 0);
if (index > -1) {
   myArray.splice(index, 1);
}
Excited Echidna