Understading case sensitivity in variables (#34600)

Added solution to index.md in guides section
This commit is contained in:
Matheus Genteluci
2019-05-25 03:02:56 -03:00
committed by Randell Dawson
parent 839c7e56c4
commit 1664350f0f

View File

@ -11,4 +11,20 @@ var camelCase;
var theBestVariableEver;
var weWillStoreNumbersInThisVariable;
```
## Alerta de Spoiler: Solução à frente!
## Solução:
```javascript
// Declarations
var studlyCapVar;
var properCamelCase;
var titleCaseOver;
// Assignments
studlyCapVar = 10;
properCamelCase = "A String";
titleCaseOver = 9000;
```