Untitled

Untitled

class Hero {
//생성자 Hero가 호출되면 contructor가 실행됨 => 클래스 속성값 초기화하는 기능
	constructor(구멍){
   this.q = "구멍"
	 this.w = "snowball"
 }
}

new Hero("스킬구망")