These should be compared like strings, not like (parsed) integers.
@@ -153,4 +153,8 @@ s.substring(100, 0) == "xfooxfooxxbarxbarxx";
s.substring(120, 100) == "";
// fromCharCode
-String.fromCharCode(65) == "A";
+String.fromCharCode(65) == "A";
+
+// ensure int strings compared as strings, not parsed ints (issue #3734)
+("3" > "11") == true;
+(" 3" < "3") == true;