<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>数组判断</title>
</head>
<body>
<script>
function isArray(obj) {
/* 判断对象 obj 是否是数组。*/
return typeof obj === "object" && obj.constructor === Array;
}
function isArray2(obj) {
return obj instanceof Array;
}
let arr = [];
// console.log(isArray(arr)); // true
// console.log(isArray2(arr)); // true
//============================================================
// console.log(typeof arr, typeof arr === "object");
// // object true
// console.log(arr.constructor);
// // ƒ Array() { [native code] }
// console.log(arr.constructor.name, typeof arr.constructor.name);
// // Array string
</script>
</body>
</html>