Math.floor(X) x可以是任意数值或者表达式。如果是表达式该函数应该返回什么值呢?
意思是x=表达式的值。
var a=1;
var b=2;
var c=Math.floor(a+b);
结果为c==3。
0或1,真或假?