JSFiddle - React, Tailwind, and code Playground
by MuLtDirectX
JavaScript
function numberCounter(n){
return function(){
console.log(n)
n--
numberCounter(n)
}
}
numberCounter(5)
by MuLtDirectX
function numberCounter(n){
return function(){
console.log(n)
n--
numberCounter(n)
}
}
numberCounter(5)