3 数据类型
3.1 Number
8进制数不是标准的,应该避免使用。
??
Number --> String
?
Number --> Boolean? NaN, 0 --> false? others--> true
String --> Boolean??? "" --> false others --> true
object --> Boolean?? null --> false others --> true
?
3.4 Function?
function squre(x) {return x * x;}
?
var squre = function(x) {return x * x;}
?
var plus= Function("x, y", "return x +y;")
?
?
3.12 Wrapper Object?
3.15?Reference or Value?
数字,bool类型都是value的,object都是reference的。string是不可改变的,传得是reference, == 比较的是value。