Created
April 17, 2016 09:03
-
-
Save arcanis/1d1ddbef8a94046c9bef5393c1bfe246 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 type in types) | |
doSomething(type); // should be indented | |
for (let type of types) | |
doSomething(type); // should be indented |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment