--- title: Window.document slug: Web/API/Window/document translation_of: Web/API/Window/document ---
Restituisce un riferimento al documento contenuto nella finestra.
doc = window.document
doc
รจ un riferimento a un oggetto document.<html> <head> <title>Ciao, mondo!</title> </head> <body> <script type="text/javascript"> var doc = window.document; alert( doc.title); // produce: Ciao, mondo! </script> </body> </html>
HTML