Vidyalelo
JavaScript · Q35

Document Object Model And Event Handling

Programming · JavaScript · question 35

Q35

A new web browser window can be opened using which method of the Window object ?

A.
createtab()
B.
Window.open()
Answer
C.
open()
D.
all of the mentioned

Answer: Option B

Solution

Answer: Option B
Solution:
You can open a new web browser window with the open() method of the Window object. Window.open() loads a specified URL into a new or existing window and returns the Window object that represents that window.