Skip to content

Commit e9afe52

Browse files
authored
Fix typo under "Unicode String & RegExp Literal"
1 parent 506c652 commit e9afe52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ Extended support using Unicode within strings and regular expressions.
307307

308308
6| "𠮷".length === 2;
309309
6| "𠮷".match(/./|u|)[0].length === 2;
310-
5| "𠮷" === "\uD842\uDFB7";
310+
6| "𠮷" === "\uD842\uDFB7";
311311
6| "𠮷" === "|\u{20BB7}|";
312312
6| "𠮷".|codePointAt|(0) == 0x20BB7;
313313
6| for (let codepoint |of| "𠮷") console.log(codepoint);

0 commit comments

Comments
 (0)