#How do I get numbers in an array in a for loop to print the sum?
4 messages · Page 1 of 1 (latest)
This question pertains to arr2 where I need to make the sum print.
This isnt discord.js related at all, what you want is reduce
Array.prototype.reduce()
The reduce() method executes a user-supplied "reducer" callback function on each element of the array, in order, passing in the return value from the calculation on the preceding element. The final result of running the reducer across all elements of the array is a single value.