JavaScript中不能作为变量名的关键字和保留字总结:

  1、js中的关键字:

  

breakcasecatchcontinuedefault
deletedoelsefinallyfor
functionifininstanceofnew
returnswitchthisthrowtry
typeofvarvoidwhilewith

  2、js中的保留字:

  

abstractbooleanbytecharclass
constdebuggerdoubleenumexport
extendsfinalfloatgotoimplements
importintinterfacelongnative
packageprivateprotectedpublicshort
staticsupersynchronizedthrowstransient
volatile  

上面这些字符在js里面都不可作为变量名,作为变量名时js可能会报错或者不执行。

04-02 17:55