1 2 3 4 5 6 7
function foo(x) { x.c = 10; assertEq(x.c, undefined); } x = {a:0,b:1}; Object.freeze(x); foo(x);