Calculate total based on numbers array with JavaScript reduce

node v14.20.1
version: 1.0.0
endpointsharetweet
const numbers = [1, 2, 3, 4, 5]; const sum = numbers.reduce((accumulator, currentValue) => { return accumulator + currentValue; }, 0);
Loading…

no comments

    sign in to comment