View on GitHub

reading-notes

Functional Programming

Links:

  1. Functional Programming Concepts
  2. Refactoring JavaScript Readability

Concepts of Functional Programming in Javascript

What is functional programming?

Functional programming is a programming paradigm — a style of building the structure and elements of computer programs — that treats computation as the evaluation of mathematical functions and avoids changing-state and mutable data

Refactoring JavaScript for performance and Readability

Back to Homepage