1 2 3 4 5 6 7 8 9
function f(y) { y = 123456; for (var x = 0; x < 9; ++x) { z = arguments.callee.arguments; assertEq(z[0], Math); } } f(Math);