<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> js的变量类型 </title>
</head>
<script type="text/javascript">
var aaa = "hello dema";
window.alert (typeof(aaa));
aaa = 666;
window.alert (typeof(aaa));
</script>
<body>
</body>
</html>
小结:
1.typeof(变量名称) 可以查询变量类型
2.js是的类型不是固定的,可以变化,跟ios里面有区别;