how to delete an item from an array in javascript w3schools code example
Example 1: how to remove an item from an array in javascript
pop - Removes from the End of an Array.
shift - Removes from the beginning of an Array.
splice - removes from a specific Array index.
filter - allows you to programatically remove elements from an Array.
Example 2: delete an item from array javascript
let items = [12, 548 ,'a' , 2 , 5478 , 'foo' , 8852, , 'Doe' ,2154 , 119 ];
items.length;
items.splice(3,1) ;
items.length;