Q. What are the different types of Pop up boxes available in JavaScript?
β
Correct Answer: (D)
All of the above
Explanation:
Let's solve it clearly:
In JavaScript, there are three types of popup boxes:
- Alert β shows a simple message with an OK button.
- Prompt β asks the user for input (shows an input box).
- Confirm β asks the user to confirm something (OK/Cancel buttons).
Thus, the correct answer is:
(D) All of the above