Upgrade to PRO for Only $50/Year—Limited-Time Offer! 🔥

Functional-Light JavaScript

Functional-Light JavaScript

What are the core principles of FP that JavaScript developers can use to make more understandable and reason-able code?

Avatar for Kyle Simpson

Kyle Simpson PRO

July 27, 2016
Tweet

More Decks by Kyle Simpson

Other Decks in Programming

Transcript

  1. Closure is when a function "remembers" the variables around it

    even when that function is executed elsewhere.
  2. RECAP: ‣ Pure Functions (side effects) ‣ Composition ‣ Immutability

    ‣ Closure ‣ Recursion ‣ Lists (map, filter, reduce)
 (fusion, transducing)