<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
var a = 1; //數(shù)字
var b ="hello";//字符串
var c = true; //布爾值
var d = null; //null
var e; //如果聲明留攒,不賦值嫉嘀,那么就是undefined(未定義)
// typeof方法 用來做數(shù)據(jù)類型檢測
// typeof 后面跟上變量名:那么就得到這個變量的類型
//得到的結(jié)果 是一個字符串
console.log(typeof a); //number 數(shù)字
console.log(typeof b); //string 字符串
console.log(typeof true); //boolean布爾值
console.log(typeof d); //object 【在js中是對象的意思,先了解】
console.log(typeof e); //undefined 未定義
</script>
</body>
</html>