Merge pull request #51 from oslek/catch

variable declaration to newline
This commit is contained in:
Harrison Shoff
2013-02-18 17:21:57 -08:00

View File

@@ -371,7 +371,8 @@
var items = getItems(),
goSportsTeam = true,
dragonball,
i, length;
i,
length;
```
- Assign variables at the top of their scope. This helps avoid issues with variable declaration and assignment hoisting related issues.