在js函数的参数里,可以传入一个函数作为参数
例子:
var fn = (a)=>{ //如果这个参数a是函数,那么就执行这个函数,否则打印a的值 if(typeof a === "function"){ a(); }else{ console.log(a) } } fn(test(2)) function test(a) { console.log(a) }
原文地址:https://www.cnblogs.com/luguankun/p/12041759.html
时间: 2024-10-08 11:29:11