function f(i) {
    if (i >= 10)
        return;
    var d = 3 + Math.abs();
    f(i ? i + 1 : 1);
    bailout();
}

f(0);