in JavaScript by
What is the difference between window and document in Javascript?

1 Answer

0 votes
by

Below are the main differences between window and document,

WindowDocument
It is the root level element in any web pageIt is the direct child of the window object. This is also known as Document Object Model(DOM)
By default window object is available implicitly in the pageYou can access it via window.document or document.
It has methods like alert(), confirm() and properties like document, locationIt provides methods like getElementById, getElementsByTagName, createElement etc
 
...