Last active
May 25, 2020 15:59
-
-
Save CodePint/c88fd91c33087cee30de042e4525d0fc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function upto(x) { | |
console.log("print has been started!") | |
for (var i = 1; i < x; i++) { | |
console.log(i); | |
} | |
console.log("print has been finished!") | |
} | |
upto(100); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment