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

I write a code,In which i use if statement and apply health condition but there is a error what should I do pls guide me…

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 buyHealth() {
if (gold>=10) {
gold -= 10;
health += 10;
goldText.innerText = gold;
healthText.innerText = health;
console.log(“This code will run because gold is greater than or equal to 10.”);
}
}

Your browser information:

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

Challenge Information:

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

Heres the righ code

Mod Edit SOLUTION REMOVED

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