Skip to content

Commit 194ac6b

Browse files
chore: deleted commented code on Karens lesson_06 expressions calculator assignment
1 parent 123e2ae commit 194ac6b

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

lesson_06/expression/src/expression_calculator.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ export class ExpressionCalculator {
77
const power = this.pow(d, e);
88
const division = this.divide(multiplication, power);
99
return division;
10-
//return (this.add(a, b) * c) / this.pow(d, e);
1110
}
1211

1312
// Function to be implemented: (a + b) * c / Math.pow(d, e)
@@ -28,5 +27,4 @@ export class ExpressionCalculator {
2827
}
2928
}
3029

31-
3230
//end of file//

0 commit comments

Comments
 (0)