美文网首页
null/undefined/nan的区别?

null/undefined/nan的区别?

作者: 智多牛 | 来源:发表于2016-12-20 14:15 被阅读0次

/**
* 不存在的对象
*/
console.log(document.getElementById('abc')) //输出:null

    /**
     * 声明但未初始化
     */
    var rect;
    
    console.log(rect)  //输出:undefined
    
    
    /**
     * 值不是数字
     */
    console.log(Number('小明')) //输出:NaN
    
    console.log(isNaN('小明'))  //输出:true

相关文章

网友评论

      本文标题:null/undefined/nan的区别?

      本文链接:https://www.haomeiwen.com/subject/aroxvttx.html