A Functional Approach to Learning JavaScript: Looping with Recursion
Functional programming languages do not, generally, use iterative techniques for performing looping computations. JavaScript does have a full complement of iterative looping constructs but in this article I’m going to show you how to achieve looping using recursion.