Writing Functional Programs
Learn how to use higher-order functions and composition to write functional code.
We'll cover the following...
Higher-order functions and composition
Let’s return to the topic of building applications. Higher-order functions are the first way of building larger programs out of smaller components. With the withFilterAndMap function (discussed here), we could’ve created three one-liner functions to be used by the withFilterAndMap function in combination with map and filter.
Together, ...
Ask