Created
June 11, 2017 17:10
-
-
Save ApolloTang/8689578bf8397a18d1be107be81bea1d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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