Multiple choice technology web technology

What is the correct JavaScript syntax for opening a new window called "w2" ?

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

JavaScript opens new windows with window.open(). Option A shows the correct syntax. Option B uses a non-existent window.new(), option C treats window as a function (it's an object), and option D invents openwindow().