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

Tell us what’s happening:

create an if statement. Set the condition to call the isMonsterHit function.

Your code so far

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

function isMonsterHit() {
  if (isMonsterHit) {
    
  }
}
Please leave the ``` line above and the ``` line below,
because they allow your code to properly format in the post.

Your browser information:

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

Challenge Information:

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

1 Like

Hey @megacartenterprises
These are the instructions

In your attack function, below the health variable, create an if statement. Set the condition to call the isMonsterHit function.

You have created the if statement in the wrong place it should be in your attack function just below the health variable then the condition should be a function isMonsterHit() not a statement like you have

Happy coding

1 Like

no needed to warp the if statment in a new function. Simply add the if should be fine for this step.

Mod edit: removed

if isMonsterHit() {

}
This way?

Nop inside the if statement

if() {
isMonsterHit();
}
Still not correct, help me out

Am sorry forum rules can’t give you the code but try passing the function inside the () of the if statements like

If(function)
4 Likes

Thanks man. Got it. I just forgot to put the parenthesis for the function in the conditional

1 Like

Always glad to help keep up the good work

same for me! thank you, this step drove me crazy without further hint!! :exploding_head:

if (isMonsterHit()) {

}

1 Like

Hey man I’m stuck somewhere. Building the decimal to binary in JavaScript. Step 87

Hey buddy can you create a topic and post your code

if() {
isMonsterHit();
}

I am facing same problem. I have tried following the chat but i failed to figure it out. Any help?

Hello and welcome to the forum. If you have any questions please create your own topic or use the Help button found on your challenge page.

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