Ameramertricic.hashnode.dev·Apr 19, 2024Browser Object Model (BOM)Intro As JavaScript developers, we should have a basic understanding of the environment in wich JavaScript code is being executed. In web development that environment is a web browser. This article aims to give some insight into object model of brows...JavaScript
Akash Thoriyaakashthoriya.hashnode.dev·Feb 6, 2024BOM (Browser Object Model)Expert-Level Explanation The Browser Object Model (BOM) in JavaScript is used to interact with the browser. It includes objects like window, which represents the browser window, andlocation, which represents the URL. You can use BOM to get details ab...JavaScript Fundamentals for InterviewsJavaScript
Akash Deep Chitranshcodechitra.hashnode.dev·Jan 17, 2023BOM: Browser Object ModelJavaScript is an object-based programming language, almost everything in JavaScript is an object(e.g. arrays, functions, etc). Similarly, the browser is also made up of objects. To make our web app more interactive the browser provides us with a rema...93 readsJavaScript