What value is obtained when executing the following code?
const numbers = [1, 2, 3];
const result = numbers.map(n => n * 2).filter(n => n > 4);
console.log(result[0]);
What value is obtained when executing the following code?
const numbers = [1, 2, 3];
const result = numbers.map(n => n * 2).filter(n => n > 4);
console.log(result[0]);