What value is obtained when executing the following code?
const numbers = [5, 6, 7];
const doubled = numbers.map(n => n * 2).filter(n => n > 10);
console.log(doubled.length);
What value is obtained when executing the following code?
const numbers = [5, 6, 7];
const doubled = numbers.map(n => n * 2).filter(n => n > 10);
console.log(doubled.length);