노트 #33 | 프로토타입 (Prototype)

HyeonWooGa·2022년 7월 25일
0

노트

목록 보기
34/74

개요

프로토타입과 클래스, 프로토타입 체인에 대해 학습합니다.


학습 목표

  • 프로토타입이 무엇인지 설명할 수 있다.
  • 프로토타입과 클래스의 관계에 대해 설명할 수 있다.

프로토타입

  • 원형 객체를 의미합니다.

클래스와 인스턴스, 포로토타입의 관계

  • 관계도

    출처<코드스테이츠 Urclass)

  • 비교연산자로 확인

    // JavaScript
    
    const arr = []; 
    // const arr = new Array();
    
    Array.prototype.constructor === Array; // true
    Array.prototype === arr.__proto__; // true
    Array.prototype.push === arr.push // true
profile
Aim for the TOP, Developer

0개의 댓글