(4)http 模塊
回調(diào) 將后續(xù)函數(shù)作為參數(shù)放在起始函數(shù)中作為參數(shù)蔓搞。
function learn(something) {
console.log(something);}
function we(callback,something) {
something += ' is cool';
callback(something);}
we(learn,'node.js');
we(function (something) {
console.log(something);},"jade");
同步/異步
I/O