Dear god:(敬爱的神:)
I know that she's out thereundefinedundefined(我知道她不在这里了)
the one i'm suppose to share my whole life with.(她,那个我想要与之共度一生的人)
And in timeundefinedundefinedyou'll show her to me.(但是我相信,某个
知识点:
1:node.js中每个文件就是一个模块,有自己的作用域。在一个文件中定义的变量,函数,类都是私有的。对其他文件不可见。
2:node.js遵循common.js规范,也就是说在ES Module中我们的导入导出使用的是import和export。在node中引入和暴露使用的是require和module.exports。
3:require用来加载某个模块
//b.js
var a =