Class

나쿠크·2023년 1월 7일
0

typeof abc // function 남는 것은 인스턴스
typeof abc() //undefined 남는 것은 데이타

funcrion abc(){
return 123
}

함수가 호출되고 증발한다. 남는 것은 데이타
typeof abc // function
typeof abc() //123

일스턴스에 붙이는 일반메소드다
.prototype

정적메소드
.prototype(x)

0개의 댓글