michael@0: function testUndefinedCmp() { michael@0: var a = false; michael@0: for (var j = 0; j < 4; ++j) { if (undefined < false) { a = true; } } michael@0: return a; michael@0: } michael@0: assertEq(testUndefinedCmp(), false);