Skip to content

Instantly share code, notes, and snippets.

@VadimBrodsky
Created February 2, 2017 15:34
Show Gist options
  • Save VadimBrodsky/350cbcd7e2bc6a732448404d0fa8a8cd to your computer and use it in GitHub Desktop.
Save VadimBrodsky/350cbcd7e2bc6a732448404d0fa8a8cd to your computer and use it in GitHub Desktop.
Reserved keyword in ES3
var reserved = [
"break", "case", "catch", "continue", "default", "delete", "do", "else",
"finally", "for", "function", "if", "in", "instanceof", "new", "return",
"switch", "this", "throw", "try", "typeof", "var", "void", "while", "with",
"abstract", "boolean", "byte", "char", "class", "const", "debugger",
"double", "enum", "export", "extends", "final", "float", "goto",
"implements", "import", "int", "interface", "long", "native", "package",
"private", "protected", "public", "short", "static", "super",
"synchronized", "throws", "transient", "volatile",
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment