这是一个非常基本的问题,仅是为了满足我的好奇心,但是有没有办法做这样的事情:
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!
}
当我只是想知道对象是否为特定类型时,不得不创建else语句有点烦人。