Skip to content
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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

add task solution #2457

wants to merge 2 commits into from

Conversation

edgergard
Copy link

No description provided.

Copy link

@00Mass00 00Mass00 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

Copy link

@roman-mirzoian roman-mirzoian left a 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}`;

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;

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".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants