Tag: JavaScript
TLDR - Recursion in JavaScript
September 8, 2019 · 1 min read
Recursion is a method of solving a problem where the solution depends on solutions to smaller instances of the same problem.
Pure Functions for Dummies
August 26, 2019 · 1 min read
Functions that produce no side effects and have the same output given the same input are called "pure".