We're a place where coders share, stay up-to-date and grow their careers.
Some recursivity in JavaScript
function countSheep(n) { while (n > 0) return countSheep(n - 1) + n + " sheep..." }
or something like that.
Some recursivity in JavaScript
or something like that.