JS_Boolean类型 2020-02-14 JS 0 评论 字数统计: 102(字) 阅读时长: 1(分) JS_Boolean类型 Boolean布尔值 布尔值有两个,主要用来做逻辑判断 true 表示真 false 表示假 使用typeof检查一个布尔值时,会返回一个boolean 12345678910111213141516<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <script> var isBingo = false; console.log(typeof false); console.log(typeof true); console.log(isBingo); </script> </head> <body> </body></html>