Skip to content

Instantly share code, notes, and snippets.

@projektorius96
Created April 21, 2019 15:58
Show Gist options
  • Select an option

  • Save projektorius96/6169aeec599fc9afaaa6aea5bbfc06bf to your computer and use it in GitHub Desktop.

Select an option

Save projektorius96/6169aeec599fc9afaaa6aea5bbfc06bf to your computer and use it in GitHub Desktop.
for loop decrement
for (var counter = 10; counter > 0; counter--) {
console.log(counter)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment