CJCoding With Joseph
15per day

Change Text Content

Select the paragraph with id="message" and change its text content to "Text has been changed!".

Platform-Provided HTML (READ-ONLY):
<div id="app">
  <p id="message">Original text</p>
</div>

Steps:
1. Use document.getElementById() or document.querySelector() to select the paragraph
2. Change its textContent property to "Text has been changed!"

Expected Output:

<div id="app">
  <p id="message">Text has been changed!</p>
</div>
Topics:
HTML DOM
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (clog, fn, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.