高阶函数英文叫Higher-order function,即一个函数的参数也还是一个函数。
例如:function myMethod(a,b,temp){ return temp(a)+temp(b);}//调用该方法windown.myMethod(4,6,Math.abs);//Math.abs求绝对值//结果为10
版权声明:本文为博主原创文章,未经博主允许不得转载。
本文共 239 字,大约阅读时间需要 1 分钟。
高阶函数英文叫Higher-order function,即一个函数的参数也还是一个函数。
例如:function myMethod(a,b,temp){ return temp(a)+temp(b);}//调用该方法windown.myMethod(4,6,Math.abs);//Math.abs求绝对值//结果为10
版权声明:本文为博主原创文章,未经博主允许不得转载。
转载于:https://www.cnblogs.com/yunns/p/4867893.html