---
title: "Window Object in Java Script"  
description: "Basically window object contain the browser frame or window. Window object contain some important object in Java Script.   Window object is global obj"  
author: "Amit Singh"  
published: 2011-06-14  
updated: 2026-05-12  
canonical: https://www.mindstick.com/blog/192/window-object-in-java-script  
category: "javascript"  
tags: ["javascript"]  
reading_time: 1 minute  

---

# Window Object in Java Script

Basically [window object](https://www.mindstick.com/forum/161284/what-are-the-key-properties-of-the-javascript-window-object) contain the browser frame or window. Window object contain some important object in Java Script.\

Window object is global object. Which are used in many cases? These are:

· [Location Object](https://www.mindstick.com/forum/161287/how-can-you-use-the-window-location-object-in-javascript)

· [History Object](https://www.mindstick.com/forum/161286/what-is-the-purpose-of-the-window-history-object-in-javascript)

· [Document](https://www.mindstick.com/articles/328642/what-to-consider-while-choosing-a-software-documentation-tool) Object

· [Navigator Object](https://www.mindstick.com/forum/161288/what-information-does-the-window-navigator-object-provide-in-javascript)

· [Screen Object](https://www.mindstick.com/forum/161289/how-does-the-window-screen-object-help-in-javascript)

Location Object: the location object contains details on the current page’s location.

History Object: the history object contains the history of pages visited by the user.

Document Object: The document object represents [your page](https://answers.mindstick.com/qa/32580/how-do-you-pay-facebook-to-help-boost-your-page). It also contain some other object as

1. Forms Object

2. Images Object

3. Links Object

Navigator Object: the navigator object holds information about the browser.

Screen Object: the screen object contains information about the display [capabilities](https://www.mindstick.com/interview/490/explain-the-concepts-and-capabilities-of-assembly-in-dot-net) of the client.\

Note: These entire objects have important [properties](https://www.mindstick.com/articles/23331/nootropics-7-different-types-and-their-unique-properties) and methods.

For Example:

History object contain method like back (), forward (), and go () etc.\
Syntax:

History. Back ();

History. Go (-1);

---

Original Source: https://www.mindstick.com/blog/192/window-object-in-java-script

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
