클레스&인스턴스

HeeChan·2020년 8월 7일
0

JS_처음 본 시점

목록 보기
7/11

클레스

function Car(brand,model,color){
	
}

인스턴스

let avante = new Car('hyudai','avante','black')
avante

객체지향

클레스 : 속성&메소드 를 정의
인스턴스 : 저의한 속성&메서드를 인스턴스 에서 이용

    function Car(b,m,c){
        this.b = b; // constructor (생성자)함수
        this.m = m;
        this.c = c;
    }
	//인스턴스 
    let cupe = new Car ('ani','car','blue')

    cupe.b
    "ani"
    cupe.m
    "car"
    cupe.c
    "blue"

메서드 를 넣어 보자

  Car.prototype.go = function(){
  console.log(this.c + 'gogo')}

prototype 객체 :여기에 속성이나 메소드를 정의할 수 있음 33

profile
생각이란걸해

0개의 댓글