JavaScript完整性检查

2018-06-24 01:18:48来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

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)最好都使用===,来避免强制转换的坑!

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:JSON字符串化

下一篇:ES6中export , export default , import模块系统总结