Source code

Revision control

Copy as Markdown

Other Tools

function f() {
var n = null;
return n++;
}
print(f());
assertEq(f(), 0);