ゲームで敵のリスポーン機能に取り組んでいますが、画面上を移動するエミーがまだ 1 つしかないため、for ループは効果がないようです。ありがとう
Monster.prototype.draw = function () {
for (var i=0; i <5; i++){
clearMonster();
monsterCon.drawImage(sprite, this.locationX, this.locationY, this.width, this.height, this.destinationX, this.destinationY, this.width, this.height);
this.checkKeys();
}
};