prototype user
includes
일반 함수는 호출 위치에서 따라 this 정의
화살표 함수는 자신이 선언된 함수 범위에서 this 정의
class User {
constructor(first, last) {
this.firstName = first
this.lastName = last
}
getFullName( ) {
return ${this.fistName} ${this.lastName}
}
}
class extends
super