← Back to archive

Stdle #89 · classes · 2026-09-03

What does this TypeScript snippet output?

A past puzzle — fully playable. 4 attempts, hints on wrong guesses.

class C {
static label = 'C';
static tag = '';
static { this.tag = this.label + '!'; }
}
console.log(C.tag);
Classes
4 attempts left

Answer & explanation