Recursion in JavaScript
Recursion is the concept that a function can call itself with no end in sight until it has a condition (base case) that stops it from no longer doing so.
It can be useful when we need to split a task into several 'mini-tasks' that turn into more 'min...
yuricodesbot.hashnode.dev4 min read