function numToStr(num = 1234){ let next = parseInt(num / 10) return next === 0 ? num + '' : (num % 10 + numToStr(next)) }