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

Tell us what’s happening: The lesson instructions don’t work. I have ZERO programming experience. Please tell me step-by-step what to do. Don’t “imply” steps.

### Your code so far

function buyHealth() {
if (“gold <=10”) {
console.log(“You don’t have enough gold”);
}
gold -= 10;
health += 10;
goldText.innerText = gold;
healthText.innerText = health;
}

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.

Replace these two sentences with your copied code.
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 Edg/120.0.0.0

Challenge Information:

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

What do you mean instructions don’t work?

We can help you, if you are willing to accept that help, but we will not solve it for you.

Unfortunately I have to agree the wording of the challenge does need work. But this part of the challenge is clear.

When you want to run code conditionally, you can use the if statement. Put all of the code in your buyHealth function inside an if statement.

They want a placeholder condition for now so it can be added later step. In this case follow the example for the condition to the letter and you should be fine.

And the example in the instructions:

function myFunction() {
    if ("condition") {
        console.log("Hello World!");
    }
}

Hope this helps a little bit. I already made an issue for this this. :slight_smile:

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