判断是否为一个对象
使用typeof()方法
function isObject(test) {
var type = typeof (test);
if (type === "object" && test !== null) {
aleart("这是一个对象");
} else {
aleart("这不是一个对象");
}
}
原理:
该方法传入一个变量,返回该变量类型所对应的字符串(“string”、“number”、“boolean”、“undefined”、“object”[null]、“object”、“function”)。
对于null、数组和对象,一律返回"object"。这表明无法区分类型null与对象类型,以及无法区分为何种对象类型。
判断对象的类型
使用instanceof
//判断对象的类型
function Student(school, major, name, age) {
this.school = school;
this.major = major;
this.name = name;
this.age = age;
}
var student1 = new Student("清华大学", "软件工程", "李四", "23");
var date = new Date();
console.log(student1 instanceof Student);//返回true
console.log(date instanceof Date);//返回true
序列化一个对象