Source code

Revision control

Copy as Markdown

Other Tools

function testNullRelCmp() {
var out = [];
for(j=0;j<3;++j) { out.push(3 > null); out.push(3 < null); out.push(0 == null); out.push(3 == null); }
return out.join(",");
}
assertEq(testNullRelCmp(), "true,false,false,false,true,false,false,false,true,false,false,false");