Javascript !instanceof If Statement
2022-08-30 00:42:28
这是一个非常基本的问题,只是为了满足我的好奇心,但是有没有办法做这样的事情:
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 语句有点烦人。