js 基本数据类型:undefined、Null、Boolean、Number、String
js 操作符:typeof检测给定变量的数据类型。返回值表示的类型
undefined、值未定义。
boolean、值为布尔类型。
string、值为字符串。
number、值为数字。
object、值为对象或null。
function、值为函数。
js数值转换
3个函数可以把非数值转换为数值:number()、parseInt()、parseFloat()
循环
do_while 语句
do{
statement
}while(expection)
while语句
while(expection){statement}
for语句
for(init;expection;post-loop-expection){statement}
for-in语句
for(property in expection)statement 用来枚举对象的属性
label标签语句
label:statement
eg: start:for(var i in list){statement}
break和continue语句
break跳出整个循环;continue跳出当前循环.
break和continue可以和label语句联合使用,返回代码块中的指定位置.
switch case 语句
switch(expection){
case value: statement; break;
defaule: statement;
}