What value is printed when executing the following code?
const numbers = [2, 4, 6];
const roots = numbers.map(Math.sqrt);
console.log(roots[0]);
What value is printed when executing the following code?
const numbers = [2, 4, 6];
const roots = numbers.map(Math.sqrt);
console.log(roots[0]);