Skip to content

Commit

Permalink
made changes to my result variable
Browse files Browse the repository at this point in the history
  • Loading branch information
zionbuch committed Oct 9, 2024
1 parent 5bdd131 commit 408e563
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lesson_06/expression/src/expression_calculator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ export class ExpressionCalculator {
const sum = this.add(a, b);
const product = this.mult(sum, c);
const expo = this.pow(d, e);
const result = this.div(product, expo);
// Implement your code here to return the correct value.
return this.div(product, expo);
}
Expand Down

0 comments on commit 408e563

Please sign in to comment.