Slide 4
Slide 4 text
Pre-FAQs
What are all of those dollar signs?
$ is used to avoid writing parentheses until the end of the line
Because balancing multiple parens visually is hard
What about all those other weird symbols/operators?
Like normal math operators, they’re just easier to read and delimit operands
E.g. add 1 1 vs 1 + 1, map increment [1,2,3] vs increment <$> [1,2,3]
In JS, I use array.map(project), not _.map(array, project)