<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<script>
/*
* typeof 返回的6种数据类型有:
* “boolean”——布尔值
* “string”——字符串
* “number”——数值
* “object”——对象或者null;
* “function”——函数
* “undefined” ——未定义
* PS : 返回的值永远是字符串
* */
window.onload = function () {
/*var a = 10;
alert(typeof a); // "number"*/
/*var a = '10';
alert(typeof a); // "string"*/
/*var a = false;
alert(typeof a); // "boolean"*/
/*var a = 10;
alert(typeof b); // "undefined"*/
/*var a = null; // {},null,[]
alert(typeof a); // "object"*/
var a = function () {
};
alert(typeof a); // "function"
}
</script>
</body>
</html>
网友评论