JavaScriptMedium
What is the difference between the Window object and the Document object?
By FrontendPro Editorial Team Updated 8/8/2026
#JavaScript
Answer
The Window object represents the browser window and provides methods to control it, such as opening new windows or accessing the browser history. The Document object represents the content of the web page loaded in the window and provides methods to manipulate the DOM, such as selecting elements or modifying their content.
