// hello.js
funciton hello () {
console.log('hello');
}
1.
export.hello = hello;
var aaa = require('hello.js');
aaa.hello(); // console.log('hello');
2.
module.export = hello;
var aaa = require('hello.js');
aaa(); // console.log('hello');
网友评论