103-export和module.export的区别 发表于 2019-10-31 | 分类于 前端-02-js基础复习 | 1234// hello.jsfunciton hello () { console.log('hello');} 1234export.hello = hello;var aaa = require('hello.js');aaa.hello(); // console.log('hello'); 1234module.export = hello;var aaa = require('hello.js');aaa(); // console.log('hello');