ECMA-262中描述了一組具有特定用途的關(guān)鍵字,可用于表示控制語句的開始或結(jié)束,或者用于執(zhí)行特定操作等。規(guī)定:關(guān)鍵字屬于語言保留,不可以用于標(biāo)示符。
ECMAScript的全部關(guān)鍵字(*為第五版新增):
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
ECMA-262中的全部保留字(第三版):
abstract enum int short boolean export interface static byte extends long super char final native class
synchronized float package throws const goto private transient debugger implements protected volatile double
import public
保留字可能會(huì)作為再版的關(guān)鍵字,如第五版新增的debugger就是第三版的保留字。
第五版中非嚴(yán)格模式下的保留字:
class enum extends supper const export import
嚴(yán)格模式下保留字:
implements package public interface private static let protected yield
注意:let和yield為新增保留字;為保證兼容建議作為參考保留字。
在Javascript中使用關(guān)鍵字和保留字會(huì)報(bào)錯(cuò)。不建議使用!
更多信息請查看IT技術(shù)專欄