布尔值:
基础知识:
Boolean 布尔值
布尔值只有==两个==,主要用来做==逻辑判断==
true:
— 表示真
false:
— 表示假
typeof对true的转换:
使用typeof检查一个布尔值时,会返回Boolean
代码:
<!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>9.09.尚硅谷_JS基础_布尔值</title>
<script>
var bool = true
alert(typeof bool)
</script>
</head>
<body>
</body>
</html>