Skip to content

Instantly share code, notes, and snippets.

@arcanis
Created April 17, 2016 09:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arcanis/1d1ddbef8a94046c9bef5393c1bfe246 to your computer and use it in GitHub Desktop.
Save arcanis/1d1ddbef8a94046c9bef5393c1bfe246 to your computer and use it in GitHub Desktop.
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