欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JavaScript数据类型 六种

程序员文章站 2022-06-04 23:17:31
...

1. JavaScript数据类型

   JavaScript数据类型有六种:numberstringbooleannullundefinedobject

<!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>