三元运算符 ?: 相当于if else;
break // 跳出;
continue // 跳过;
e.g:
for(var i=0; i<6; i++){
if(i==4){
// break;
continue;
}
alert(i);
}
二:真假的问题:
真:非0的数字、非空字符串(包括空格' ')、函数、能找到的元素、[]、{}
假:0、NaN、空字符串('')、不能找到的元素、null、undefined
用if来判断
if(){alert('真');}else{alert('假');}