编程语言
首页 > 编程语言> > javascript判断变量是否为空对象

javascript判断变量是否为空对象

作者:互联网

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

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script>
        let obj = {}

        console.log(obj == {}); // 输出为false,因为比较的是两个对象的地址,obj与{}地址不同

        //要解决这个问题需要将将obj转换为字符串再与字符串比较
        console.log(JSON.stringify(obj) == '{}'); //输出为true。
    </script>
</head>

<body>

</body>

</html>

标签:输出,console,变量,javascript,地址,为空,字符串,obj,log
来源: https://www.cnblogs.com/LiZiheng/p/16365369.html