码迷,mamicode.com
首页 > 其他好文 > 详细

函数深入理解---函数的值传递

时间:2014-12-12 18:19:28      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   sp   on   div   log   

函数的值传递

//由于函数是对象,所以可以直接把函数参数传递进来

function callFun(fun,arg){
    //第一个参数就是函数对象
    return fun(arg);
}

function sum(num){
    return num +100;
}

function say(str){
    console.log(‘hi‘ + str);
}
//var say = x;
//调用了say函数
callFun(say,‘leo‘);
//调用了sum函数
console.log(callFun(sum,20));

 

函数深入理解---函数的值传递

标签:style   blog   io   ar   color   sp   on   div   log   

原文地址:http://www.cnblogs.com/leole/p/4159991.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!