8000 Update calculator/calculator.js · unconnect/javascript-exercises@d091aef · GitHub
[go: up one dir, main page]

Skip to content

Commit d091aef

Browse files
trekitchMichael Frank
and
Michael Frank
authored
Update calculator/calculator.js
accepted Co-authored-by: Michael Frank <mfra109@gmail.com>
1 parent db4255d commit d091aef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

calculator/calculator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const power = function(a, b) {
2020
return Math.pow(a, b);
2121
};
2222

23-
//alternate solution using Exponentiation opertator
23+
//alternate solution using the Exponentiation operator
2424
const altPower = function(a, b) {
2525
return a ** b;
2626
};

0 commit comments

Comments
 (0)
0