#global-variables
Read more stories on Hashnode
Articles with this tag
最近写 Rust 程序需要用到全局状态,我希望有一个状态在公共的作用域里,其他模块能通过引入等方式去访问他,在 JS 中做起来很简单: const globalState = { name: 'abc' } function foo() { ...