javascript 學習日記

alert(0.1 + 0.2); //不是0.3
alert(NaN + NaN); //不是false 
alert(isNaN(NaN)); //true
alert(isNaN(1)); //false
alert(isNaN('1')); //false
alert(isNaN('blue')); //true
alert(isNaN(true)); //false
相關文章
相關標籤/搜索