Multiple choice technology web technology What is the correct JavaScript syntax for opening a new window called "w2" ? w2=window.open("http://www.w3schools.com"); w2=window.new("http://www.w3schools.com"); w2=window("http://www.w3schools.com"); w2=openwindow("http://www.w3schools.com"); 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().