instanceof 연산자는 객체가 어떤 클래스(타입)인지 어떤 클래스를 상속받았는지 확인 시 사용하는 연산자이다.
object instanceof type
object가 type이거나 type을 상속받는 클래스일 때, true 그렇지 않으면 false를 반환한다.