JavaScript中的保留字是什么?
保留字不能用作JavaScript变量,函数,方法,循环标签或任何对象名称。
这是JavaScript中的保留字-
| abstract | Else | instanceof | switch |
| boolean | Enum | int | synchronized |
| break | Export | interface | this |
| byte | Extends | long | throw |
| case | False | native | throws |
| catch | Final | new | transient |
| char | Finally | null | true |
| class | Float | package | try |
| const | For | private | typeof |
| continue | Function | protected | var |
| debugger | Goto | public | void |
| default | If | return | volatile |
| delete | implements | short | while |
| Do | Import | static | with |
| double | In | super |
以上是 JavaScript中的保留字是什么? 的全部内容, 来源链接: utcz.com/z/340737.html
