|
@@ -153,4 +153,8 @@ s.substring(100, 0) == "xfooxfooxxbarxbarxx";
|
|
s.substring(120, 100) == "";
|
|
s.substring(120, 100) == "";
|
|
|
|
|
|
// fromCharCode
|
|
// 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;
|