位置: 首页 / 技术文档 / JavaScript技术
JavaScript保留字(Reserved Words)是指在JavaScript语言中有特定含义,成为JavaScript语法中一部分的那些字。JavaScript保留字是不能作为变量名和函数名使用的。使用JavaScript保留字作为变量名或函数名,会使JavaScript在载入过程中出现编译错误。
JavaScript保留字列表:
break | delete | function | return | typeof |
case | do | if | switch | var |
catch | else | in | this | void |
continue | false | instanceof | throw | while |
debugger | finally | new | true | with |
default | for | null | try |
JavaScript还有一些未来保留字,这些字虽然现在没有用到JavaScript语言中,但是将来有可能用到。
JavaScript未来保留字列表:
abstract | double | goto | native | static |
boolean | enum | implements | package | super |
byte | export | import | private | synchronized |
char | extends | int | protected | throws |
class | final | interface | public | transient |
const | float | long | short | volatile |
类别:JavaScript技术 来源:本站原创 作者:hpping 日期:2009-02-10 12:06