Browser Object Model (BOM)
EasyIn plain terms
BOM: window, document, navigator, location, history, screen. window is global. location for URL, history for navigation, navigator for browser info.
What you need to know
- •window, document
- •location, history, navigator
- •Global scope
Try it yourself
Copy the code below and run it in your browser console or a code editor:
window.innerWidth; location.href; history.back(); navigator.userAgent;Learn more
Dive deeper with these trusted resources: