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

Tell us what’s happening:

The innerHTML property allows you to access or modify the content inside an HTML element using JavaScript.

Here is an example of updating the content for this paragraph element using the innerHTML property.

<p id="demo">This is a paragraph.</p>
document.querySelector("#demo").innerHTML = "Hello, innerHTML!";

In the update function, change text.innerText to text.innerHTML.

Your code so far

this is my code:

 monsterStats.style.display = "none";
  button1.innerText = location["button text"][0];
  button2.innerText = location["button text"][1];
  button3.innerText = location["button text"][2];
  button1.onclick = location["button functions"][0];
  button2.onclick = location["button functions"][1];
  button3.onclick = location["button functions"][2];
  text.innerText = location.text;
  document.querySelector("location.text.innerText").innerHTML = "text.innerHTML";

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/121.0.0.0 Safari/537.36

Challenge Information:

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

don’t do this, all the elements are already captured in variables at the top

Hello!

Here is the instruction for this step.

In the update function, change text.innerText to text.innerHTML.

It is asking that the Text part of the .innerText be changed to HTML so it is .innerHTML.

We only need to change the four letters, not add anything else.

Happy coding!

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