/*
BOM [Browser Object Model]
- open(URL [Opt], Window Name Or Target Attr [Opt], Win Features [Opt], History Replace [Opt])
- close()
- Window Features
--- left [Num]
--- top [Num]
--- width [Num]
--- height [Num]
--- menubar [yes || no]
Search
- Window.Open Window Features
*/
setTimeout(function () {
window.open("", "_self", "", false);
}, 2000);
setTimeout(function () {
window.open("https://google.com", "_blank", "width=400,height=400,left=200,top=10");
}, 2000);
You have not completed all required lessons and assessments.