본문 바로가기
javaScript/J Query & 스크립트

[javaScript] 리터럴 / 함수 / 프로토타입 객체

by mooyou 2022. 12. 27.
728x90
300x250
SMALL

오브젝트 리터럴 방식

const 인스턴스 = {
	프로퍼티1:초깃값,
    프로퍼티2:초깃값,
    
    메서드1:function(){
    },
    메서드2:function(){
    }
}

 

함수 방식

function 클래스이름(){
	this.프로퍼티1=초깃값;
    this.프로퍼티2=초깃값;
    
    this.메서드1 = function(){
    }
    this.메서드2=function(){
    }
}

 

프로토타입 방식

function 클래스이름(){
	this.프로퍼티1=초깃값;
    this.프로퍼티2=초깃값;
}

클래스이름.prototype.메서드1=function(){
}
클래스이름.prototype.메서드2=function(){
}
728x90
반응형
LIST

댓글