You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Valid in ECMAScript 5 and 6var\u{61}="abc";console.log(\u{61});// "abc"// equivalent to:console.log(a);// "abc"
Reason:
the text "Valid in ECMAScript 5 and 6" is incorrect
Code point escapes were added to JavaScript in ECMAScript 2015 (ES6).
The example is not valid for ES5
Suggested Fix:
// Valid in ECMAScript 6var\u{61}="abc";console.log(\u{61});// "abc"// equivalent to:console.log(a);// "abc"
The text was updated successfully, but these errors were encountered:
ronen-e
changed the title
Error in Appendix A - Other changes - Unicode code point escapes
Error in Appendix A - Smaller Changes - Unicode code point escapes
Oct 28, 2020
Where:
Line 91 in Appendix A - Other changes
Reason:
the text "Valid in ECMAScript 5 and 6" is incorrect
Code point escapes were added to JavaScript in ECMAScript 2015 (ES6).
The example is not valid for ES5
Suggested Fix:
The text was updated successfully, but these errors were encountered: