Answers for "function delete item on arra"

0

delete array element

const arr = [7, 8, 5, 9];
delete arr[3];
console.log(arr); //[7, 8, 5, empty] 
delete operator removes only an element; Not the space allocated to it.
Posted by: Guest on July-28-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language