码迷,mamicode.com
首页 > 其他好文 > 详细

null和undefined相等比较

时间:2018-01-17 13:42:59      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:代码   div   charset   相等   ext   lan   lang   bsp   color   

在==(相等)判断中,null和undefined相等(它们也与自身相等),除此之外不与其他值相等

示例代码:

<!DOCTYPE html>
<html lang="zh">

    <head>
        <meta charset="UTF-8" />
        <title>null和undefined相等比较</title>
    </head>

    <body>

        <script type="text/javascript">
            var a = null;
            var b;
            console.log(a == b); //true
            console.log(a == null); //true
            console.log(b == null); //true
            console.log(a == false); //false
            console.log(b == false); //false
            console.log(a == ‘‘); //false
            console.log(b == ‘‘); //false
            console.log(a == 0); //false
            console.log(b == 0); //false
        </script>
    </body>

</html>

 

null和undefined相等比较

标签:代码   div   charset   相等   ext   lan   lang   bsp   color   

原文地址:https://www.cnblogs.com/mengfangui/p/8302141.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!