Project 14: Newsletter Form
JS Wizard
Builds on these lessons
Step 1 of 3
Project
The Browser Object Model
Log window.location.href and navigator.language. These live outside your page's content entirely — the Browser Object Model is the browser's own API surface (the current URL, the browser's language, and more), separate from the DOM's view of your HTML.
🎯 Your Task
Please add the exact code shown in the light gray box below to your editor.Do not delete your previous code, just insert these new lines in the correct place!
console.log(window.location.href);
console.log(navigator.language);