Does node.js have equivalent to window object in browser

前端 未结 2 504
自闭症患者
自闭症患者 2020-11-28 11:15

What I mean is does node.js have object that are global function methods of. Like this in browser:

function myGlobalFunction() {
    console.log(this === win         


        
2条回答
  •  旧巷少年郎
    2020-11-28 11:34

    The closest equivalent in node is global. I'm not sure if it translates in all of the same ways, but if you open a REPL and type in this === global, it will return true.

    Here's a discussion on the global object, though some it the information may be deprecated as it's pretty old: 'Global' object in node.js

提交回复
热议问题