Skip to content

Instantly share code, notes, and snippets.

@ApolloTang
Created June 11, 2017 17:10
Show Gist options
  • Save ApolloTang/8689578bf8397a18d1be107be81bea1d to your computer and use it in GitHub Desktop.
Save ApolloTang/8689578bf8397a18d1be107be81bea1d to your computer and use it in GitHub Desktop.
const start = 10
const end = 20
const length = end - start + 1
let count = length
while (count) {
const index = end - count + 1
console.log(count, index)
count--
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment