欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Node.js 函数

程序员文章站 2022-03-26 22:57:35
一个函数可以作为另一个函数的参数 function fn1(fn,arg){ fn(arg); } function name(n){ console.log("i am "+n); } fn1(name,"cyy"); 使用匿名函数 function fn1(fn,arg){ fn(arg); } ......

一个函数可以作为另一个函数的参数

function fn1(fn,arg){
    fn(arg);
}

function name(n){
    console.log("i am "+n);
}

fn1(name,"cyy");

Node.js 函数

 

 

使用匿名函数

function fn1(fn,arg){
    fn(arg);
}

fn1(function(n){
    console.log("i am "+n);
},"cyy2");

Node.js 函数

 

 

http服务器实例:

var http=require("http");

http.createserver(function(request,response){
    response.writehead(200,{"content-type":"text/plain"});
    response.write("hello http~");
    response.end();
}).listen(8888);

Node.js 函数

 

 

Node.js 函数