变量¶
概念¶
WXS中的变量均为值的引用。
没有声明的变量直接赋值使用,会被定义为全局变量。
如果只声明变量而不赋值,则默认值为undefined。
VAR表现与JavaScript的一致,会有变量提升。
var foo = 1;
var bar = "hello world";
var i; // i === undefined
上面代码,分别声明了 foo
,bar
,i三个变量。然后,foo
赋值为数值 1
, bar
赋值为字符串 "hello world"
。
保留标识符¶
以下标识符不能作为变量名:
delete
void
typeof
null
undefined
NaN
Infinity
var
if
else
true
false
require
this
function
arguments
return
for
while
do
break
continue
switch
case
default