这是一个真正的基本问题,真的只是满足我的好奇,但也有办法这样做:
if(obj !instanceof Array) {
//The object is not an instance of Array
} else {
//The object is an instance of Array
}
这里的关键是能够在前方使用NOT! 通常,我必须这样做的方式就是:
if(obj instanceof Array) {
//Do nothing here
} else {
//The object is not an instance of Array
//Perform actions!
}
在我只想知道该物体是否属于特定类别时,我几乎不想再作陈述。