
Recursion
Definition of Recursion:
Recursion is a programming technique where a function calls itself in order to solve smaller instances of the same problem until it reaches a base case that does not require further recursion.
Definition of Recursion:
Recursion is a programming technique where a function calls itself in order to solve smaller instances of the same problem until it reaches a base case that does not require further recursion.
“Everybody wants to be a bodybuilder, but nobody wants to lift heavy ass weight”
YAGNI is an acronym for “You Aren’t Gonna Need It”.
Imagine a basic web app (SPA, REST API, Sql database) with a new-user registration form. The form collects a first and last name of a new user. It is decided that the middle name needs to be collected on the form as well.