js函数作为参数
Posted 山石
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js函数作为参数相关的知识,希望对你有一定的参考价值。
在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函数作为参数的主要内容,如果未能解决你的问题,请参考以下文章
使用 std::thread 函数 C++11 将指针作为参数传递