-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Mastering JavaScript Functional Programming
By :

12.1. Maybe tasks? In the questions section of Chapter 8, Connecting Functions - Pipelining and Composition, a question had to do with getting the pending tasks for a person, but taking into account errors or border situations, such as the possibility that the selected person might not even exist. Redo that exercise, but using Maybe or Either monads to simplify that coding.
12.2. Extending your trees. In order to get a more complete implementation of our functional binary search trees, implement the following functions:
12.3. Functional lists. In the same spirit of the binary trees, implement functional lists. Since a list is defined to be either empty or a node (head) followed by another list (tail), you might want to start with the following:
const List = (head, tail) => (destructure, __) => destructure...