Created
February 2, 2017 15:34
-
-
Save VadimBrodsky/350cbcd7e2bc6a732448404d0fa8a8cd to your computer and use it in GitHub Desktop.
Reserved keyword in ES3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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