how to hide div in html

HTML
document.getElementById('elementName').hide();document.querySelector("#test").hidden = true;
document.querySelector("#test").hidden = false;<button onclick="myFunction()">Click Me</button>

<div id="myDIV">
  
This is my DIV element.
</div> /*Hiding an element can be done by setting the display property to none. 
The element will be hidden, and the page will be displayed as if the element is not there:
Example:
*/

h1.hidden {
  display: none;
}

/*visibility:hidden; also hides an element.
However, the element will still take up the same space as before. 
The element will be hidden, but still affect the layout:
Example:
*/

h1.hidden {
  visibility: hidden;
}
Source

Also in HTML: