-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
add task solution #2457
base: master
Are you sure you want to change the base?
add task solution #2457
Conversation
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.
LGTM!
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.
Almost done!
src/makeRobot.js
Outdated
}, | ||
|
||
get info() { | ||
return `name: ${name}, chip version: ${version}, wheels: ${wheels}`; |
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.
It is better to access all fields through this
, because now you are returning here the data that came as an argument to the makeRobot
function, and if we have a method that changes the name
, then we will not get the actual name without using this
.
Fix this in all code.
src/makeRobot.js
Outdated
|
||
evacuate() { | ||
this.coords.x = 1400; | ||
this.coords.y = 500; |
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.
It is better to take it out into separate constants so that there is no use of "magic numbers".
No description provided.