Skip to content

Commit

Permalink
dwdw
Browse files Browse the repository at this point in the history
  • Loading branch information
alvitodev authored Dec 25, 2023
1 parent c3f4a28 commit 73a5c0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/calculator/scripts/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function calculate(value) {
result = num1 / num2;
break;
case "^":
result = num1 ^ num2;
result = num1 ** num2;
break;
default:
result = "Invalid operator";
Expand Down

0 comments on commit 73a5c0a

Please sign in to comment.