What will this code log to the console?
const foo = [1, 2, 3]; const [n] = foo; console.log(n);
Nothing--this is not proper JavaScript syntax and will throw an error.
NaN
undefined
1