mostly-adequate-guide icon indicating copy to clipboard operation
mostly-adequate-guide copied to clipboard

Mostly adequate guide to FP (in javascript)

Results 92 mostly-adequate-guide issues
Sort by recently updated
recently updated
newest added

Hello, links to this repository in the **Table of contents** section on https://mostly-adequate.gitbook.io/mostly-adequate-guide/ are broken. Also the **Download it** links lead to Gitbook's homepage instead to a download. Thank you...

After reading this book, Not only the knowledge about functional programming has increased, My English vocabulary has also improved. (non-native English speaker)

Is the next function is really pure? Every time it will produce new function ``` const signUp = (Db, Email, attrs) => () => { const user = saveUser(Db, attrs);...

I don't believe that the assertion below is correct _Since our data is immutable, we can simply replace the teams with their actual value const punch = (a, t) =>...

Reading this book from: https://mostly-adequate.gitbook.io/mostly-adequate-guide/ch04 Last exercise seems to be missing (thought I found it directly in github repo). Adding img example: https://i.imgur.com/mOC9HXT.png

in the file, the `match` function was referenced in an erroneous way so it wasn't clear for somebody to understand how to apply partial implementation of that function.

In chapter 8 the final code example before "Old McDonald..." has this line `const zoltar = compose(console.log, either(id, fortune), getAge(moment()));` However, the support functions do not have an `id` function....

I've tried to upload various versions to [google play books](https://play.google.com/books) now, and they always fail with the error `"This file cannot be processed."`. It seems that this is a [problem...

TODO

I lost a couple of hours because I was guessing that findUserById would return just an `Either Error User`, but then I found out that it returns a Task of...