Pricing
Learn
Code
Deploy
More
recursion
154
2 years ago by
let x;
function recursion(x){
console.log(x)
if(x==43){
return;
}
recursion(x+1)
}
recursion(x)