Copy as Markdown

Other Tools

const JS_RESERVED_WORDS = [
"false",
"true",
"null",
"break",
"case",
"catch",
"const",
"continue",
"debugger",
"default",
"delete",
"do",
"else",
"finally",
"for",
"function",
"if",
"in",
"instanceof",
"new",
"return",
"switch",
"this",
"throw",
"try",
"typeof",
"var",
"void",
"while",
"with",
"import",
"export",
"class",
"extends",
"super",
"enum",
"implements",
"interface",
"package",
"private",
"protected",
"public",
"as",
"assert",
"async",
"await",
"from",
"get",
"let",
"meta",
"of",
"set",
"static",
"target",
"yield",
];
module.exports = JS_RESERVED_WORDS;