What is the output of the following code snippet?
let numbers = [200, 500, 900];
let difference = numbers.reduce(
(accumulator, currentValue) => accumulator - currentValue
);
console.log(difference); What is the output of the following code snippet?
let numbers = [200, 500, 900];
let difference = numbers.reduce(
(accumulator, currentValue) => accumulator - currentValue
);
console.log(difference); Create a free account to access the full topic