Skip to content

Instantly share code, notes, and snippets.

@alkayesdev
Created October 15, 2018 01:43
Show Gist options
  • Select an option

  • Save alkayesdev/dc22e2dbf6d28aa05d7d575409829eb1 to your computer and use it in GitHub Desktop.

Select an option

Save alkayesdev/dc22e2dbf6d28aa05d7d575409829eb1 to your computer and use it in GitHub Desktop.
for loop project
for (let c = 5; c<=100; c+=5){
console.log(c);
}
for (let b = 100; b>=0; b-= 5 ){
console.log(b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment