-
Sub-task
-
Resolution: Fixed
-
P4
-
8
-
None
-
b96
-
Verified
Length of octal escapes in strings should be 2 or 3 characters depending on whether the first digit is greater than 3.
"\471".charCodeAt(0)
=> should return 39 instead of 313
"\377".length
=> should be 1
"\400".length
=> should be 2
"\471".charCodeAt(0)
=> should return 39 instead of 313
"\377".length
=> should be 1
"\400".length
=> should be 2