We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bdd131 commit 408e563Copy full SHA for 408e563
lesson_06/expression/src/expression_calculator.ts
@@ -4,7 +4,6 @@ export class ExpressionCalculator {
4
const sum = this.add(a, b);
5
const product = this.mult(sum, c);
6
const expo = this.pow(d, e);
7
- const result = this.div(product, expo);
8
// Implement your code here to return the correct value.
9
return this.div(product, expo);
10
}
0 commit comments