CJCoding With Joseph

Add Multiple Classes at Once

Select the paragraph with id="note" and add BOTH classes "bold" and "rounded" in a single classList.add() call.

Platform-Provided HTML (READ-ONLY):
<p id="note">Hello</p>

Steps:
1. Select the paragraph with document.getElementById().
2. Pass two arguments to classList.add(): "bold" and "rounded".

Expected Output:

<p id="note" class="bold rounded">Hello</p>
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.