How to get document object in full-screen console?

i’m getting

const obj = document
undefined

Hi @johnaweiss

In order for the community to suggest ideas to help you solve your code issue it would be useful to share a link to your Repl.

https://replit.com/@johnaweiss/mt-import-records

The document object is a global object defined by window. Does window.document work for you?

const d = window.document
undefined

For me it’s working.
I’m having:

> const obj = document;
undefined

and then:

> console.log(obj);
#document