1.
How can you hide an HTML element using JavaScript by modifying its CSS display property?
2.
Which property is commonly used in JavaScript to hide an HTML element without removing its space in the layout?
3.
How can you dynamically hide an HTML element using JavaScript based on a button click event?
4.
What happens to an HTML element when its display property is set to "none" using JavaScript?
5.
Which JavaScript method is commonly used to hide an HTML element by adding a CSS class with hidden properties?
6.
How can you hide multiple HTML elements using JavaScript by adding a CSS class with hidden properties?
7.
What is the advantage of using CSS classes to hide HTML elements compared to inline styles in JavaScript?
8.
How can you hide an HTML element using JavaScript by modifying its visibility property?
9.
What does setting the CSS visibility property to "hidden" do to an HTML element?
10.
How can you hide an HTML element using JavaScript by setting its display property to "none" in an external CSS file?