-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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 #3424
base: master
Are you sure you want to change the base?
Solution #3424
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,37 @@ | ||
'use strict'; | ||
|
||
class Animal { | ||
// write your code here | ||
static alive = []; | ||
|
||
constructor(name, health = 100) { | ||
this.health = health; | ||
this.name = name; | ||
this.id = crypto.randomUUID(); | ||
Animal.alive.push(this); | ||
} | ||
} | ||
|
||
class Herbivore extends Animal { | ||
// write your code here | ||
constructor(name, health, hidden = false) { | ||
super(name, health); | ||
this.hidden = hidden; | ||
} | ||
|
||
hide() { | ||
this.hidden = true; | ||
} | ||
} | ||
|
||
class Carnivore extends Animal { | ||
// write your code here | ||
bite(target) { | ||
if (target instanceof Herbivore && target.hidden === false) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The condition correctly checks if the target is an instance of |
||
target.health -= 50; | ||
|
||
if (target.health <= 0) { | ||
Animal.alive = Animal.alive.filter((animal) => animal.id !== target.id); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Filtering the |
||
} | ||
} | ||
} | ||
} | ||
|
||
module.exports = { | ||
|
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.
The use of
crypto.randomUUID()
for generating a unique ID is correct, assuming the environment supports it. Ensure that the environment where this code runs has support for thecrypto
module and itsrandomUUID
method.