一.函数的定义方式 1.函数声明方式 function 关键字(命名函数) 2.函数表达式(匿名函数) 3.new Function( ) var fn = new Function(‘参数1’,‘参数2’.....,‘函数体’) Function 里面参数都必须是字符串格式 第三种方式执行效率低,也不方便书写,很少使用 所有函数都是 Function 的实例(对象) 函数也属于对象 二. 函数的调用方式 // 1. 普通函数 this 指向 window(函数调用者) function…
Haskell functions can take functions as parameters and return functions as return values. A function that does either of those is called a higher order function. Higher order functions aren't just a part of the Haskell experience, they pretty much ar…