image

Acesse bootcamps ilimitados e +650 cursos pra sempre

60
%OFF
Article image
Pedro Fonseca
Pedro Fonseca07/01/2024 00:20
Compartilhe
Compartilhe
Comentários (3)
André Bezerra
André Bezerra - 07/01/2024 14:07
class Hero {
  constructor(nome, idade, tipo) {
      this.nome = nome;
      this.idade = idade;
      this.tipo = tipo;
  }
  atacar() {
      let ataque
      let classe = {"Guerreiro","Mago","Monge","Ninja"}
      let acessorio = {"espada","magia","artes marciais","shuriken"} 
      for (let i = 0; i < classe.length; i++) {
        if (this.tipo === classe[i]) {
          console.log(`O ${this.tipo} atacou usando ${acessorio[i]}`)
          break
        }
      } 
  }
}


let warrior = new Hero("Aragorn", "37", "Guerreiro")
let wizard = new Hero("Gandalf", "68", "Mago")
let monk = new Hero("Wong", "54", "Monge")
let ninja = new Hero("Kakashi", "30", "Ninja")


warrior.atacar()
wizard.atacar()
monk.atacar()
ninja.atacar()
Pedro Fonseca
Pedro Fonseca - 07/01/2024 13:48

Obrigado, Welinton! Sucesso para vc tbm!

Welinton Ferreira
Welinton Ferreira - 07/01/2024 00:59

Muito bom, isso ai, continue firme. Sucesso!