Course · Section 7: JavaScript in the Browser: DOM and Events · Lecture 76: Selecting and Manipulating Elements
The page has `<div id="box" class="hidden">Hello</div>`. Write JavaScript that removes the `hidden` class from `#box` and adds the class `visible`.
classList.toggle flips the presence of a class in one call.
Run your code to see results.