无标题文档





二、


// NaN:not a number 不是个 数字 的 数字类型

// isNaN:Is not a number 是不是不是一个数字(不是数字)


isNaN();// truefalse

// 判断某些值是不是数字

// 不喜欢数字、讨厌数字


 //alert( isNaN( function(){ alert(1) } ) );//true

// alert( isNaN('250') );

// Number()  '250' => 250 => false


// alert( isNaN( [] ) );