Multiple choice javascript Which method will open a new window ? popUp(PageURL,WindowName,settings); window.launch(PageURL,WindowName,settings); window.close(PageURL,WindowName,settings); window.open(PageURL,WindowName,settings); Reveal answer Fill a bubble to check yourself D Correct answer Explanation window.open() is the correct JavaScript method to open a new browser window. It takes URL, window name, and feature settings as parameters.