View on GitHub

Code Fellows reading notes

A repository for organizing notes from my learning.

Functional Programming

Functional Programming Concepts

Source (article): Concepts of Functional Programming in Javascript

Modules and Require()

Source (Youtube): The Net Ninja: Node JS Tutorial for Beginners #6 - Modules and require()

Things I want to know more about

So referential transparency is a super cool topic that I hadn’t considered before. I understand the underlying concept of it, but how can this be applied to the work that we do as developers? It’s had to imagine where subbing out entire functions for their returns would really make my life any easier, given the work we’ve been doing so far. What approach should we take if we incorporated pure functions and immutable state into our projects?