/*
BOM [Browser Object Model]
- location Object
--- href Get / Set [URL || Hash || File || Mail]
--- host
--- hash
--- protocol
--- reload()
--- replace()
--- assign()
*/
console.log(location);
console.log(location.href);
// location.href = "https://google.com";
// location.href = "/#sec02";
// location.href = "https://developer.mozilla.org/en-US/docs/Web/JavaScript#reference";
// console.log(location.host);
// console.log(location.hostname);
// console.log(location.protocol);
// console.log(location.hash);
You have not completed all required lessons and assessments.