JavaScript函数式编程
最新书摘:
-
灭灭2014-09-28A higher-order function adheres to a very specific definition: * It’s first-class (refer back to Chapter 2 if you need a refresher on this topic) * Takes a function as an argument * Returns a function as a result
-
Eyadrein2014-06-29object-oriented approach tends to break problems into groupings of “nouns,” or objects, a functional approach breaks the same problem into groupings of "verbs", or functions.