-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chigazo Lesson 06 #240
Chigazo Lesson 06 #240
Conversation
lesson_06/expression/tsconfig.json
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should revert changes to this file as they aren't needed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the test came back with an error before I changed them
@@ -2,10 +2,36 @@ export class ExpressionCalculator { | |||
/** Returns the calculation of ((a + b) * c) / d^e */ | |||
calculate(a: number, b: number, c: number, d: number, e: number): number { | |||
// Implement your code here to return the correct value. | |||
return 0; | |||
const Sum = this.add(a, b) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Your variable names should be lowerCamelCase
, not ProperCase
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
corrected
Received an error in tsfigure.json and I made no changes. Double checked with Jordan.