什么是node.js等效项window["myvar"] = value?
window["myvar"] = value
要设置全局变量,请使用global代替window。
global
window
global["myvar"] = value