模块文件other.js:
module.exports = { fun1 : function() { console.log("啊啊啊"); }, str1 : '666' };
导进来并使用:
var other = require("./other"); other.fun1(); console.log(other.str1);
运行:
E:WorkSpaceJavaScriptStudy>node main.js
啊啊啊
666
模块文件other.js:
module.exports = { fun1 : function() { console.log("啊啊啊"); }, str1 : '666' };
导进来并使用:
var other = require("./other"); other.fun1(); console.log(other.str1);
运行:
E:WorkSpaceJavaScriptStudy>node main.js
啊啊啊
666