1 2 3 4 5 6 7 8 9 10
function f() { assertEq(typeof this, "object"); } this.f(); function gg() { for (var j = 0; j < 3; ++j) { f(); } }; gg();