Skip to content

Instantly share code, notes, and snippets.

@CodePint
Last active May 25, 2020 15:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CodePint/c88fd91c33087cee30de042e4525d0fc to your computer and use it in GitHub Desktop.
Save CodePint/c88fd91c33087cee30de042e4525d0fc to your computer and use it in GitHub Desktop.
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