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