instanceof

y0ung·2020년 12월 4일
0

⚙ API-JS

목록 보기
6/7

instaceof 연산자는 생성자의 prototype속성이 객체의 프로토타입 체인 어딘가 존재하는지 판별한다.

구문

object instanceof constructor

object

  • 판별할 객체

constructor

  • 판별 목표 함수

예제

function C() {};
function D() {};

let A = new C();

A instanceof C // true : Object.getPrototypeOf(A) === C.prototype
A instanceof D // false : D.prototype이 A객체의 프로토타입 체인에 없음

참고
instanceof mdn

profile
어제보다는 오늘 더 나은

0개의 댓글