Created
March 1, 2018 07:20
-
-
Save vldvel/fa6b645cb1e78012045618c475bf0e89 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
for (let i = 0; i < 5; i += 1) { | |
console.log(i); | |
} | |
// this will return immediately 0 -> 1 -> 2 -> 3 -> 4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment