1.node的全局变量-global
注意浏览器下的全局对象跟 nodejs 中的全局对象不一致:
node的全局对象是global
浏览器的环境下的全局对象是window
2.前端的模块化的发展历史:
出现了 AMD、CMD、CommonJS 等模块化标准
主模块依赖于其他模块,这时就要使用 AMD 规范定义的的 require()函数。
AMD的使用方式是:
require(['moduleA','moduleB','moduleC'],function(moduleA, moduleB, moduleC){
// some code here
});