Merge pull request #1175 from filmaj/style-guide-camelCase

Added variable camelCasing to style guide.
This commit is contained in:
bootstraponline
2013-09-18 11:04:22 -07:00
+9 -1
View File
@@ -163,4 +163,12 @@ Style notes
* Function is not followed by a space. Use `function() {` not `function () {`
* More to come....
* Variable names should be camelCased:
```js
var myVariable = 42;
```
not
```js
var my_variable = 42;
```