标签: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) }
标签:func 一个 type pre function code == log test
原文地址:https://www.cnblogs.com/luguankun/p/12041759.html