This challenge will test you on implementing the "static" keyword in JavaScript.
Study the code below and then run it.
class Animal { constructor() { this.count = 0; } static increaseCount() { this.count += 1; } static getCount() { return this.count; }}function test(){ Animal.increaseCount(); console.log(Animal.getCount()); }test()
Your task ...