JavaScript的关键字和保留字大全

ECMA-262第6版规定的所有关键字如下:

break do in typeof case
else instanceof var catch export
new void class extends return
while const finally super width
continue for switch yield dubugger
function this default if throw
delete import try

ECMA-262第6版为将来保留的所有词汇:

始终保留:

enum

严格模式下保留:

implements package public
interface protected static
let private

模块代码中保留:

await

注意:
name 也是最新的未来保留词

你可能感兴趣的:(JavaScript,前端学习)