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 6e4006c commit 84730fbCopy full SHA for 84730fb
lesson_06/expression/src/expression_calculator.ts
@@ -6,9 +6,11 @@ export class ExpressionCalculator {
6
//PEMDAS order -> expected : //((a + b) * c) / d^e
7
8
// Caculate addition with an add function '(a + b)'
9
-
+ function Add(a,b){
10
+ let addition = a + b;
11
+ };
12
// caculate multiplication '(add * c)' and 'd^e' so d * (e times)
13
+
14
// caculate division with divide function which is different variables of the multiplication values '(add * c)' and 'd^e' so d * (e times)
15
16
return 0;
0 commit comments