When a fnuction calls itself until it doesn’t. Duh!
1let countDownFrom = num => { 2 if (num === 0) return 3 countDownFrom(num -1) 4} 5countDownFrom(10)