New solution to match updated test syntax

See separate PR "Removed array syntax in multiply test #359"  

https://github.com/TheOdinProject/javascript-exercises/pull/359
This commit is contained in:
fruddenfeldt 2023-06-06 23:01:36 +02:00 committed by GitHub
parent 3e530e3f61
commit 80f7881a26
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 sum = 1
for (let i = 0; i < args.length; i++) {
sum *= args[i]
}
return sum
}
const power = function (a, b) {
return Math.pow(a, b);