What is the difference between window and document?

0

Below are the main differences between window and document,
Window
It is the root level element in any web page
By default window object is available implicitly in the page
It has methods like alert(), confirm() and properties like document, location
Document
It is the direct child of the window object. This is also known as Document Object Model(DOM)
You can access it via window.document or document.
It provides methods like getElementById, getElementByTagName, createElement etc

asked Apr 14, 2023 at 19:31
Sign in to add a comment

0 Answers

0
📝 No answers yet!

Be the first to answer this interview question.

Your Answer

Sign in to post your answer and help the community.