js--小结⑥---typeof

 <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<p>typeof操作符返回变量或者表达式的类型</p>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML=
typeof "john"+"<br />"+
typeof "3.14"+"<br />"+
typeof false+"<br />"+
typeof [1,2,3,4]+"<br />"+
typeof{name:' john',age:34}; </script>
</body>
</html>

js--小结⑥---typeof

上一篇:ScrollView中嵌套两个ListView


下一篇:Js--AJAX的小知识(一):ajax的五种状态