Skip to content

Instantly share code, notes, and snippets.

@NilukaSripalim
Last active October 7, 2021 19:30
Show Gist options
  • Save NilukaSripalim/456190447fc8f468a38a99fd32eb42ba to your computer and use it in GitHub Desktop.
Save NilukaSripalim/456190447fc8f468a38a99fd32eb42ba to your computer and use it in GitHub Desktop.
JavaScript Essentials
function learnJS() {
for(var i = 0 ; i < 5; i++) {
console.log(i)
}
}
learnJS();
function learnJS() {
for(var i = 0 ; i < 5; i++) {
}
console.log(i)
}
learnJS();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment