JS转换为布尔值为false的五个值
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>Document</title> </head> <script> console.log(Boolean("")); console.log(Boolean(0)); console.log(Boolean(null)); console.log(Boolean(undefined)); console.log(Boolean(NaN)); </script> <body> <h1>标题</h1> <p id="info"></p> </body> </html>

浙公网安备 33010602011771号