clean up javascript files

This commit is contained in:
Aditya Bhargava
2017-06-11 16:15:26 -07:00
parent 6f78bdf3d7
commit 468fda77a2
10 changed files with 0 additions and 86 deletions

View File

@@ -0,0 +1,11 @@
function countdown(i) {
console.log(i);
// base case
if (i <= 0) {
return;
} else {
countdown(i-1);
}
}
countdown(5);