We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Generate test suite for:
// Binary and Octal literals 0b111110111 === 503 0o767 === 503 // Unicode Strings "𠮷".length === 2 "𠮷".match(/./u)[0].length === 2 "𠮷" === "\uD842\uDFB7" "𠮷" === "\u{20BB7}" "𠮷".codePointAt(0) == 0x20BB7 for (let codepoint of "𠮷") console.log(codepoint)
More info:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Generate test suite for:
More info:
The text was updated successfully, but these errors were encountered: