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

solution #1821

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

solution #1821

wants to merge 2 commits into from

Conversation

thienlaoo
Copy link

No description provided.

Copy link

@33Orange 33Orange left a comment

Choose a reason for hiding this comment

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

Good job.

A few moments to fix

@@ -1,15 +1,36 @@
'use strict';

class Animal {
// write your code here
static alive = [];

Choose a reason for hiding this comment

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

#952 (comment)
You can add static property as in issue comment to avoid test fails

Suggested change
static alive = [];

Comment on lines 29 to 31
const index = Animal.alive.indexOf(animal);

Animal.alive.splice(index, 1);

Choose a reason for hiding this comment

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

Let's change it to method filter and clear alive array from animals with health <= 0
Move this logic to separated method in instance of Animal class and use it here as method of Animal

Copy link

@33Orange 33Orange left a comment

Choose a reason for hiding this comment

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

Well done

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.

2 participants