JavaScript数据类型 六种
程序员文章站
2022-06-04 23:17:31
...
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>
下一篇: 我不就不会打碎了吗