0 votes
in JavaScript by
What is the use of window object?

1 Answer

0 votes
by

The window object is created automatically by the browser that represents a window of a browser. It is not an object of JavaScript. It is a browser object.

The window object is used to display the popup dialog box. Let's see with description.

MethodDescription
alert()displays the alert box containing the message with ok button.
confirm()displays the confirm dialog box containing the message with ok and cancel button.
prompt()displays a dialog box to get input from the user.
open()opens the new window.
close()closes the current window.
setTimeout()performs the action after specified time like calling function, evaluating expressions.

Related questions

+1 vote
asked Dec 4, 2019 in JavaScript by SakshiSharma
0 votes
asked Jun 8, 2022 in JavaScript by sharadyadav1986
...