Source code
Revision control
Copy as Markdown
Other Tools
function f(a) {
Object.freeze(arguments);
a = 1;
return arguments[0];
}
assertEq(f(10), 10);
assertEq(f("hello"), "hello");
function f(a) {
Object.freeze(arguments);
a = 1;
return arguments[0];
}
assertEq(f(10), 10);
assertEq(f("hello"), "hello");