Toggle a CSS Class

DOM Manipulation ยท medium

The page has `<div id="box" class="hidden">Hello</div>`. Write JavaScript that removes the `hidden` class from `#box` and adds the class `visible`.

Hints
  • classList.remove and classList.add are the direct methods to use.

Learning resources

Loading...

Run your code to see results.