面试题.html 584 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <script>
  11. console.log([] == ![]); // true
  12. console.log([0] == ![]); // true
  13. // [] == false
  14. // [] == 0
  15. // '0' == 0
  16. // 0 == 0
  17. // Number String Boolean
  18. console.log({} == !{});
  19. // {} == false
  20. // {} == 0
  21. // '[object Object]' == 0
  22. </script>
  23. </body>
  24. </html>