用html语句,先声明a,b,c,d 4个变量,类型分别为整型、浮点型、布尔型、字符串型,分别判断并打印出 4 个变量的数据类型。
时间: 2024-05-07 20:21:13 浏览: 68
详细解析Python中的变量的数据类型
```html
<!DOCTYPE html>
<html>
<body>
<script>
var a = 10;
var b = 3.14;
var c = true;
var d = "Hello World";
console.log(typeof a); // 输出 "number"
console.log(typeof b); // 输出 "number"
console.log(typeof c); // 输出 "boolean"
console.log(typeof d); // 输出 "string"
</script>
</body>
</html>
```
阅读全文