Multiple choice technology

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

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

window.open() is the correct method to open a new browser window. Option A uses window.new (doesn't exist), while C and D use 'new' incorrectly (new.open() and new.window() are not valid JavaScript).