1 2 3 4 5 6 7 8 9 10 11 12 13
function f() { for (var i = 0; i < 12; i++) { try { eval(""); void x; } catch (e) { } } } f(); let x;