The delete operator

Report a typo

const myArray = ['dog', 'cat', 'elephant', 'tiger', 'pigeon'];

delete myArray[3];

console.log(myArray) // ?

What result will we get in the console?

Select one option from the list
___

Create a free account to access the full topic