标签: javascript module export
我正在尝试从我正在阅读的教程中解析这一点。 我的理解是module.exports将对象返回给调用进口商。 当您还返回出口之前又将其分配给全局对象时,会发生什么情况?
// Instantiate a new game in the global scope at 800px by 600px window.game = new Game(800, 600); module.exports = game;