There was an error while loading. Please reload this page.
while
function fn() { let i = 1; while (++i < 100); return i; }
Compiles to:
function fn() { let i = 1; while (++i < 100) // No semicolon! return i; }
causing fn() to give 2 instead of 100.
fn()