讀《高程3》系列之第三章2.0---關鍵字和保留字

1,ECMA-262描述了一組具備特定用途的關鍵字,這些關鍵字能夠用於表示控制語句的開始或者結束,或者用於執行特定操做等。關鍵字是語言保留有的,不能用作標示符。this

2,如下是ECMAScript的所有關鍵字spa

break do instanceof typeof
case else new var
catch finally return void
continue for switch while
debugger function this with
default if throw delete
in try class const

3,ECMAScript還有另一組保留字,保留字沒有特定的用途,但它們未來可能被用做關鍵字debug

            第五版非嚴格模式下以下:ip

class enum extends super
const export import  

            第五版嚴格模式以下:it

implements package public
interface private static
let protected yield

4,無論是關鍵字仍是保留字,都不能看成標示符。io

相關文章
相關標籤/搜索