1. 什么是模块 ?

  模块就是能够完成一定工作的函数,对象,甚至是基本的数据类型

var hello = function () {
    return 'hello';
}
View Code

相关文章: