1. JavaScript数据类型
JavaScript数据类型有六种:number、string、boolean、null、undefined、object
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<script type="text/javascript">
var num=5;
// alert(typeof(num));
var str="shfkkg";
// alert(typeof(str));
var n=89.5;
// alert(typeof(n));
var ob=new Object();
// alert(typeof(ob));
var un;
// alert(typeof(un));
var nul=null;
// alert(typeof(nul));
document.write(typeof(num)+'<br/>'+typeof(str)+'<br/>'
+typeof(n)+'<br/>'+typeof(ob)+'<br/>'+typeof(un)+'<br/>'+typeof(nul));
</script>
</head>
<body>
</body>
</html>
本文介绍了JavaScript中的六种基本数据类型:number、string、boolean、null、undefined和object,并通过示例代码展示了如何使用typeof操作符来检测这些变量的数据类型。
887

被折叠的 条评论
为什么被折叠?



