JavaScript 变量类型 JavaScript 逻辑运算符 JavaScript 比较运算符 JavaScript 变量类型 <!DOCTYPE html> <html> <body> <script> var a; document.write(typeof a+"\r\n"); a = true; document.write(typeof a+"\r\n"); a = 5; document.write(typeof a+"\r\n"); a = "web"; document.write(typeof a+"\r\n"); </script> </body> </html> JavaScript 逻辑运算符 JavaScript 比较运算符