¿Cuál es el resultado del siguiente código?
const myArray = [1, 2, 3]; myArray.unshift(0); console.log(myArray[0]);
undefined
2
1
0