Inside the browser, you've probably used window if you've done any JavaScript development:
Window is the global object, it stores basically everything you have access to. In the following screenshot, you can see things such as array, we have all sorts of CSS manipulation and Google Analytics keywords; essentially every variable you create lives inside Window:
We have something similar inside Node called global, as shown here:
It's not called window because there is no browser ...