Which of the following methods in Java Script will display a window having a…
2017
Which of the following methods in Java Script will display a window having a dialog box with a specified message, along with an OK and CANCEL button as options?
- A.
prompt()
- B.
alert()
- C.
confirm()
- D.
request()
Attempted by 163 students.
Show answer & explanation
Correct answer: C
alert() shows only an OK button.
prompt() shows an input box with OK and Cancel, but it is mainly for user input.
confirm() displays a dialog box with a message and OK and Cancel buttons.
request() is not a valid JavaScript method.
A video solution is available for this question — log in and enroll to watch it.