Appearance
Add up the given array of numbers.
sum([1, 2, 3]) // => 6 sum([]) // => 0
const { sum } = require('rhodash') sum([1, 2, 3]) // => 6