The reduceRight method

Report a typo

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);
Select one option from the list
___

Create a free account to access the full topic