是否可以在Javascript中传递任意函数作为参数,其中函数是在运行时定义的?

时间:2016-08-22 02:21:15

标签: javascript

我正在写一个像

这样的函数
function myFunction1 ( myFunction2ReturnBool ){
    if (myFunction2ReturnBool()) {
         // Do something if myFunction2ReturnedBool() returned true. 
    }
}

这里,myFunction2ReturnBool()是一个检查条件是否满足的函数。有没有办法让这个工作?

0 个答案:

没有答案