- JS Introduction
- JS Introduction
- JS Comments
- JS Variables
- JS Datatypes
- JS Operators
- JS Type Conversions
- JS Control Flow
- JS Comparisons
- JS If else
- JS If else Ladder
- JS Ternary Operator
- JS Switch
- JS For Loop
- JS For In
- JS For Of
- JS While
- JS Do While
- JS Break & Continue
- JS Functions
- JS Function Declaration
- JS Function Parameters
- JS Return Statement
- JS Function Expressions
- JS Anonymous Functions
- JS Objects
- JS Objects
- JS Object Methods
- JS Object Constructors
- JS Object Destructuring
- JS Object Prototypes
- JS Map, Filter & Reduce
- JS ES6
- JS ES6
- JS let and const
- JS Arrow Functions
- JS Template Literals
- Destructuring Assignment
- JS Spread Operator
- JS Default Parameters
- JS Classes
- JS Inheritance
- JS Map
- JS Set
- JS Async
- JS Callbacks
- JS Asynchronous
- JS Promises
- JS Async/Await
- JS HTML DOM/BOM
- JS Document Object
- JS getElementbyId
- getElementsByClassName
- JS getElementsByName
- getElementsByTagName
- JS innerHTML
- JS outerHTML
- JS Window Object
- JS History Object
- JS Navigator Object
- JS Screen Object
JavaScript Window Object
Global Scope:
- In a browser environment, the window object is the global object.
- All global JavaScript variables, functions, and objects are defined as properties and methods of the window object.
Accessing Properties and Methods:
- You can access properties and methods of the window object directly without specifying window.
Example: Accessing Properties
console.log(window.innerWidth); // Returns the width of the browser window
console.log(window.document); // Returns the document object of the current window
Window Methods:
- The window object provides methods for interacting with the browser window, such as opening new windows, manipulating window properties, and navigating to different URLs.
Example: Opening a New Window
window.open('https://www.example.com', '_blank'); // Opens a new window with the given URL
Window Properties:
- Properties of the window object include dimensions and position of the browser window, information about the browser, location details, and more.
Example: Accessing Window Properties
console.log(window.innerWidth); // Returns the width of the browser window
console.log(window.location.href); // Returns the URL of the current page
Browser Interaction:
- The window object facilitates interaction between JavaScript code and the browser environment, allowing manipulation of the browser's behavior, appearance, and content.
Example: Displaying an Alert
window.alert('This is an alert message'); // Displays an alert dialog box with the specified message
Key Points
- The window object represents the browser window and serves as the global object for client-side JavaScript.
- It provides access to browser-related properties, methods, and functionalities.
- Understanding the window object is essential for browser-based JavaScript development, enabling interaction with the browser environment and manipulation of web pages.