Learn Basic JavaScript by Building a Role Playing Game - Step 140

Tell us what’s happening:

I have tried to call the if function inside the if else function and it keeps rejecting my code. I do not understand where I got it wrong. I need help yet again…

Your code so far

<!-- file: index.html -->

/* file: styles.css */

/* file: script.js */
// User Editable Region

function attack() {
  text.innerText = "The " + monsters[fighting].name + " attacks.";
  text.innerText += " You attack it with your " + weapons[currentWeaponIndex].name + ".";
  health -= monsters[fighting].level;
  monsterHealth -= weapons[currentWeaponIndex].power + Math.floor(Math.random() * xp) + 1;
  healthText.innerText = health;
  monsterHealthText.innerText = monsterHealth;
  if (health <= 0) {
    lose();
  } else if (monsterHealth <= 0) {
    if (fighting === 2) {
      function winGame();
    } else (){
      defeatMonster();
    }
  }
}

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36

Challenge Information:

Learn Basic JavaScript by Building a Role Playing Game - Step 140

SyntaxError
as else does not take any condition, you can’t use the round parenthesis, remove them

1 Like

hey there!
also the function word ir reserved for declaring a new function. in order to call a function you have already declared, just write the function name with the parentheses.

3 Likes

thank you! it worked!

2 Likes

thank you for your help.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.