function counting(acc,until){ if(acc===(until+1)) return until console.log(acc) counting(acc+1,until) } counting(0,10)
In recursions lik