最佳答案
这是一个非常基本的问题,只是为了满足我的好奇心,但是有没有一种方法可以这样做:
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语句有点烦人。