1 2 3 4 5 6 7 8 9 10 11
function g() { } function f(b) { var test; if (b) { g.apply(null, arguments); var test = 1; } else { f(false); } } f(true);