1 2 3 4 5 6 7 8 9
function f(i) { if (i >= 10) return; var d = 3 + Math.abs(); f(i ? i + 1 : 1); bailout(); } f(0);