Introduce a Test262-inspired conformance test suite with parallel runner, TOML manifest, and policy enforcement (pass/known_fail/skip). Covers language core (variables, expressions, functions, control flow, types), DOM bindings, events, Promises, scheduling, and 20 known-fail cases documenting unsupported features (for/while loops, try/catch, arrays, objects, arrow functions, etc.). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
5 lines
305 B
JavaScript
5 lines
305 B
JavaScript
if (0) { console.log("0"); } else { console.log("0 is falsy"); }
|
|
if ("") { console.log("empty"); } else { console.log("empty string is falsy"); }
|
|
if (null) { console.log("null"); } else { console.log("null is falsy"); }
|
|
if (undefined) { console.log("undef"); } else { console.log("undefined is falsy"); }
|