JS 100第12題ゲームキャラクタークラスの作成



<プールコード>
class Wizard{
	constructor(x,y,z){ //constructor은 생성자 함수 그 자체를 가리킴, constructor 대신 Wizard 써도 됨
		this.health = x;
		this.mana = y;
		this.armor = z;
	}
	attack(){
		console.log("파이어볼");	
	}
};

const x = new Wizard(545, 210, 10);
console.log(x.health, x.mana, x.armor);
x.attack();