Merge pull request #364 from fruddenfeldt/dev

New solution to match updated test syntax
This commit is contained in:
Cody Loyd 2023-06-07 14:56:36 -05:00 committed by GitHub
commit 8692f0ea18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 5 deletions

View File

@ -10,11 +10,13 @@ const sum = function (array) {
return array.reduce((total, current) => total + current, 0);
};
const multiply = function (array) {
return array.length
? array.reduce((accumulator, nextItem) => accumulator * nextItem)
: 0;
};
const multiply = function(...args){
let product = 1;
for (let i = 0; i < args.length; i++) {
product *= args[i];
}
return product;
};
const power = function (a, b) {
return Math.pow(a, b);