JavaScript
31.1K subscribers
1.23K photos
10 videos
33 files
895 links
A resourceful newsletter featuring the latest and most important news, articles, books and updates in the world of #javascript 🚀 Don't miss our Quizzes!

Let's chat: @nairihar
Download Telegram
CHALLENGE

class Base {
static count = 0;
static increment() {
this.count++;
return this.count;
}
}

class Derived extends Base {
static count = 10;
}

console.log(Base.increment(), Derived.increment(), Base.count, Derived.count);