Update calculator.js

This commit is contained in:
Rhys 2018-09-28 13:36:03 +08:00 committed by GitHub
parent 5156aa6611
commit 3182c2c22d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -12,7 +12,8 @@ function sum(array) {
function multiply(array) { function multiply(array) {
return array.length return array.length
? array.reduce((accumulator, nextItem) => accumulator * nextItem): 0; ? array.reduce((accumulator, nextItem) => accumulator * nextItem
: 0;
} }
function power(a, b) { function power(a, b) {