What will the output of the following code be?
let numbers = [2, 4, 8];
let answer = numbers.reduceRight((x, y) => x / y, 1);
console.log(answer);What will the output of the following code be?
let numbers = [2, 4, 8];
let answer = numbers.reduceRight((x, y) => x / y, 1);
console.log(answer);Create a free account to access the full topic