打赏

JavaScript完整性检查

1、7个“坑”

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

    <head>
        <meta charset="UTF-8" />
        <title>JavaScript完整性检查</title>
    </head>

    <body>

        <script type="text/javascript">
            console.log('0' == false); //true
            console.log(false == 0); //true
            console.log(false == ''); //true
            console.log(false == []); //true
            console.log('' == 0); //true
            console.log('' == []); //true
            console.log(0 == []); //true
        </script>
    </body>

</html>

2、避免坑的原则

(1)如果两边有true或者false,千万不要使用==

(2)如果两边有[],''或者0,千万不要使用==

(3)最好都使用===,来避免强制转换的坑!

posted @ 2018-01-17 14:15  孟繁贵  阅读(624)  评论(0编辑  收藏  举报
TOP