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 73e50fa commit 6de74e2Copy full SHA for 6de74e2
lesson_06/expression/src/expression_calculator.ts
@@ -2,7 +2,7 @@ export class ExpressionCalculator {
2
/** Returns a calculation involving a, b, c, d, and e */
3
calculate(a: number, b: number, c: number, d: number, e: number): number {
4
// Implement your code here to return the correct value.
5
- const exponent = this.pow(d, e);
+ const exponent = this.pow(d, e);
6
const division = this.divide(a, b);
7
const multiplication = this.multiply(c, exponent);
8
const result = this.add(division, multiplication);
0 commit comments