JSFiddle - React, Tailwind, and code Playground
by moeishaa
JavaScript
var count = function(num) {
if ( num > 1000 ) { return };
document.write( num++ + '<br>');
count(num);
};
count(0);
by moeishaa
var count = function(num) {
if ( num > 1000 ) { return };
document.write( num++ + '<br>');
count(num);
};
count(0);