map() sum javascript code example Example: sum of all numbers in an array javascript Click to copyconst arrSum = arr => arr.reduce((a,b) => a + b, 0)