-
Notifications
You must be signed in to change notification settings - Fork 0
Guillaume Savy #1
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
base: master
Are you sure you want to change the base?
Conversation
dan2014
left a comment
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.
Please consider making changes based on the comments I made
|
|
||
| carModels.sort(); | ||
|
|
||
| for ( let i = 0; i < carModels.length; i++ ) { |
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.
Just console.log the carModels object
| for ( let i = 0; i < carModels.length; i++ ) { | |
| console.log(carModels) |
| // add(1,2); | ||
|
|
||
| let add = (param1, param2) => param1 + param2; | ||
|
|
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.
Invoke the function and console.log the output
| // subtract(1,2); | ||
|
|
||
| let subtract = (param1, param2) => param1 - param2; | ||
|
|
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.
Invoke the function and console.log the output
|
|
||
| // Mitzi's name | ||
|
|
||
| console.log( mitzi[ "name" ] ); |
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.
Consider not having spaces between object key and the brackets.
| console.log( mitzi[ "name" ] ); | |
| console.log( mitzi["name"] ); |
This is my assignment. @dan2014