1 2 3 4 5 6 7 8
function g(f) {} function f(b) { g.apply(null, arguments); if (b < 10) f(b+1); } f(0);