Consider the following code snippet:
const numbers = [1, 2, 3, 4, 5];
numbers.unshift(0);
console.log(numbers);
What will be the output of the console.log statement?
Consider the following code snippet:
const numbers = [1, 2, 3, 4, 5];
numbers.unshift(0);
console.log(numbers);
What will be the output of the console.log statement?