--- title: Window.document slug: Web/API/Window/document translation_of: Web/API/Window/document ---
Retorna una referencia al documento contenido en la ventana.
doc = window.document
doc
es una referencia al objeto del document.<!DOCTYPE html> <html> <head> <title>Hola, Mundo!</title> </head> <body> <script type="text/javascript"> var doc = window.document; console.log(doc.title); // Hola, Mundo! </script> </body> </html>