Answer & Solution
Answer: Option A
Solution:
To set the display property of an HTML element using JavaScript, you can modify the style property of the element. For example, element.style.display = "block"; sets the display property of the element to "block", making it visible and taking up space in the document flow.