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 #2687

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

add task solution #2687

wants to merge 2 commits into from

Conversation

OlhaMomot
Copy link

No description provided.

Copy link

@polinavafik polinavafik left a comment

Choose a reason for hiding this comment

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

great job!

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!


if (this.length === 0) {
return '';
}
Copy link

Choose a reason for hiding this comment

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

You don't need this check if you have this one:


    if (!this[this.length - 1]) {
      return resultString;
    }
    

Copy link

@Moroz-Dmytro Moroz-Dmytro left a comment

Choose a reason for hiding this comment

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

Try to refactor your code
There is a bug 🐞 with current solution
If I call your method on next array

image

I got next result

image

But next was expected:

image

}

for (let i = 0; i < this.length - 1; i++) {
if (this[i] !== undefined && this[i] !== null) {

Choose a reason for hiding this comment

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

You are using this[i] 3 times. Create variable for this value

return resultString;
}

return resultString + this[this.length - 1];
Copy link

Choose a reason for hiding this comment

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

acn we use lastElement here?

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.

5 participants