Merge pull request #364 from fruddenfeldt/dev
New solution to match updated test syntax
This commit is contained in:
commit
8692f0ea18
|
@ -10,11 +10,13 @@ const sum = function (array) {
|
||||||
return array.reduce((total, current) => total + current, 0);
|
return array.reduce((total, current) => total + current, 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
const multiply = function (array) {
|
const multiply = function(...args){
|
||||||
return array.length
|
let product = 1;
|
||||||
? array.reduce((accumulator, nextItem) => accumulator * nextItem)
|
for (let i = 0; i < args.length; i++) {
|
||||||
: 0;
|
product *= args[i];
|
||||||
};
|
}
|
||||||
|
return product;
|
||||||
|
};
|
||||||
|
|
||||||
const power = function (a, b) {
|
const power = function (a, b) {
|
||||||
return Math.pow(a, b);
|
return Math.pow(a, b);
|
||||||
|
|
Loading…
Reference in New Issue