โ Back to HTML DOM
Question 131
Add Multiple Classes at Once
Add Multiple Classes at Once
Select the paragraph with id="note" and add BOTH classes "bold" and "rounded" in a singleclassList.add()call. Platform-Provided HTML (READ-ONLY): <p id="note">Hello</p> Steps: 1. Select the paragraph withdocument.getElementById(). 2. Pass two arguments toclassList.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.