--- title: Window.document slug: Web/API/Window/document tags: - API - DOM HTML - NeedsCompatTable - NeedsExample - NeedsMarkupWork - NeedsSpecTable - Propriedade - Referencia - Window translation_of: Web/API/Window/document ---
Retorna a referência para o documento contido na janela.
doc = window.document
doc
é um objeto referência de um objeto para um document.<!DOCTYPE html> <html> <head> <title>Hello, World!</title> </head> <body> <script type="text/javascript"> var doc = window.document; alert( doc.title); // alerts: Hello, World! </script> </body> </html>