Answer & Solution
Answer: Option A
Solution:
To hide an HTML element using JavaScript, you can modify the style property of the element to control its visibility. For example, element.style.display = "none"; hides the element by setting its display property to "none".