1 2 3 4 5 6 7
function f(x, y, z) { if (1) x = z; return x + y; } assertEq(f(0, 2, {}), "[object Object]2")