Stdle #8 · 2026-06-14
What does this log?
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
enum E { A = 'a', B = 'b' }namespace E { export function join() { return E.A + E.B; } }console.log(E.A, E.join());Enums
Stdle #8 · 2026-06-14
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
enum E { A = 'a', B = 'b' }namespace E { export function join() { return E.A + E.B; } }console.log(E.A, E.join());