change to alternate solutions name

This commit is contained in:
trekitch 2022-01-26 15:03:53 -05:00
parent 894ae2d4ce
commit 10199f35a9
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ const multiply = function(array) {
: 0;
};
const power = function(a, b) {
const altPower = function(a, b) {
return Math.pow(a, b);
};