2016年2月17日 星期三

JavaScript 入門指南 - 變數命名規則



JavaScript 入門指南 - 變數命名規則


通常是用英文單字或縮寫替識別字命名,注意不能用數字當開頭,以下為合法的變數名稱
variable_name
_code
CODE
_1234
a1234
someThing
SomeThing

另外須注意 JavaScript 的所有保留字 (reserved word) 包括關鍵字 (keyword) 都不能當作識別字名稱。所有保留字列表如下
abstractbooleanbreakbyte
casecatchcharclass
constcontinuedebuggerdefault
deletedodoubleelse
enumexportextendsfalse
finalfinallyfloatfor
functiongotoifimplements
importininstanceofint
interfacelongnativenew
nullpackageprivateprotected
publicreturnshortstatic
superswitchsynchronizedthis
throwthrowstransienttrue
trytypeofvarvoid
volatilewhilewith


變數或常數都可以當作運算元 (operand) ,運算元與運算子 (operator) 構成運算式 (expression) 。接下來,我們繼續看到運算式與陳述(statement) 。


Reference : http://pydoing.blogspot.tw/2012/12/JavaScript-Variable-Naming.html

沒有留言:

張貼留言