Node.js筆記

模塊基本操作 //file hello.js function hello(name){ console.log('hello,' + name); } module.exports = hello; // file main.js var hello = require('./hello.js'); hello('yourName'); 判斷JavaScript執行環境 有很多Ja
相關文章
相關標籤/搜索