View on GitHub

reading-notes

Learning Notes Repo for Code Fellows

Functional Programming

Functional Programming Concepts

  1. What is functional programming?
  1. What is a pure function and how do we know if something is a pure function?
  1. What are the benefits of a pure function?
  1. What is immutability?
  1. What is Referential transparency?

Node JS Tutorial for Beginners #6 - Modules and require()

  1. What is a module?
  1. What does the word ‘require’ do?
  1. How do we bring another module into the file the we are working in?
  1. What do we have to do to make a module available?

more on Functional Programming Concepts

more on Modules

<==Back