adding numbers in an array javascript

Solutions on MaxInterview for adding numbers in an array javascript by the best coders in the world

showing results for - "adding numbers in an array javascript"
Fynn
21 Sep 2018
1console.log(
2  [].reduce((a, b) => a + b)
3)