码迷,mamicode.com
首页 > Web开发 > 详细

js函数作为参数

时间:2019-12-15 10:34:30      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:func   一个   type   pre   function   code   ==   log   test   

在js函数的参数里,可以传入一个函数作为参数

例子:

       var fn  = (a)=>{
            //如果这个参数a是函数,那么就执行这个函数,否则打印a的值
            if(typeof a === "function"){
                a();
            }else{
                console.log(a)
            }
        }
      
        fn(test(2))
       
        function test(a) {
            console.log(a)
        }

js函数作为参数

标签:func   一个   type   pre   function   code   ==   log   test   

原文地址:https://www.cnblogs.com/luguankun/p/12041759.html

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