/    /  Javascript BOM Introduction

Javascript BOM Introduction

 

The Browser Object Model (BOM) is provided to interact with the browser.

The default object of the browser is a window known as you can call all the functions of the window by specifying the window or directly.

 

 For example:

 

window.alert("hello javatpoint"); 

 

Javascript BOM Introduction