TGViewer
JavaScript JavaScript @javascript · 31.1K subscribers
Post #3515 486
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);
More from @javascript
  1. Sep 24, 2026Post #3516
  2. Sep 23, 2026🤩 tinyjs: Build JavaScript Desktop Apps in <10MB I built an app with this and was impress…
  3. Sep 23, 2026Post #3513
  4. Sep 23, 2026CHALLENGE function* inner() { yield 1; yield 2; return 100; } function* outer() { const re…
  5. Sep 22, 2026Post #3511
  6. Sep 22, 2026CHALLENGE function Foo(x) { this.x = x; return { x: x * 2 }; } function Bar(x) { this.x =…
Threads Profile ViewerView any public Threads profile without an account.Open ThreadLook →Writing with AI? Make it sound human.Metric37 rewrites AI drafts so they read naturally. Free AI detector, 1,500 words free.Try Metric37 →