Javascript(一)-07-(JS语法-小细节)



【JS一些细节】
1.undefined:未定义


【代码】


<html>
<head>
</head>


<body>
	<script type="text/javascript">
		var x;
		alert(x);//undefined
		alert(x==undefined);//true,这个可用于健壮性判断
	<script>
</body>
</html>




=========================================


2.获取具体值的类型,可以通过typeof来完成


【代码】


<html>
<head>
</head>


<body>
	<script type="text/javascript">
		var x;
		alert(typeof("abc"));//string
		alert(typeof("2.5"));//number
		alert(typeof("true"));//boolean
		alert(typeof("90"));//number
		alert(typeof('9'));//string
		
		alert(typeof("abc")=='string');//true,这句可用于判断数据类型
		alert(typeof("2.5")=='number');//true
	<script>
</body>
</html>
 
 




你可能感兴趣的:(Javascript(一)-07-(JS语法-小细节))