이것은 실제로 내 호기심을 만족시키기위한 기본적인 질문이지만 다음과 같은 방법이 있습니다.
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 문을 작성 해야하는 것은 약간 성가신 일입니다.