Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 function testStrict() {
2 var n = 10, a = [];
3 for (var i = 0; i < 10; ++i) {
4 a[0] = (n === 10);
5 a[1] = (n !== 10);
6 a[2] = (n === null);
7 a[3] = (n == null);
8 }
9 return a.join(",");
10 }
11 assertEq(testStrict(), "true,false,false,false");