We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9eee991 commit c9cc2bbCopy full SHA for c9cc2bb
answer.js
@@ -1 +1,9 @@
1
// *** YOUR ANSWER BELOW ***
2
+function countDown(int) {
3
+ while(int > 0) {
4
+ console.log(int);
5
+ int -= 1;
6
+ }
7
+}
8
+
9
+countDown(20);
0 commit comments