From 10199f35a938bdf0a7f8ed77b8e30d7a3e7e09fb Mon Sep 17 00:00:00 2001 From: trekitch Date: Wed, 26 Jan 2022 15:03:53 -0500 Subject: [PATCH] change to alternate solutions name --- calculator/calculator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calculator/calculator.js b/calculator/calculator.js index a18a527..c46b919 100644 --- a/calculator/calculator.js +++ b/calculator/calculator.js @@ -16,7 +16,7 @@ const multiply = function(array) { : 0; }; -const power = function(a, b) { +const altPower = function(a, b) { return Math.pow(a, b); };