Changed var to const (#22475)

The English version was changed so I changed var to const as in the English version
pull/30971/head^2
Adrian Chira 2019-05-16 20:57:16 +03:00 committed by The Coding Aviator
parent 39a9da5c1d
commit 65d4afc9e0
1 changed files with 12 additions and 12 deletions

View File

@ -19,17 +19,17 @@ if (!variable) {
## Exemplos gerais
```javascript
var string = ""; // <-- falsy
const string = ""; // <-- falsy
var filledString = "some string in here"; // <-- truthy
const filledString = "some string in here"; // <-- truthy
var zero = 0; // <-- falsy
const zero = 0; // <-- falsy
var numberGreaterThanZero // <-- truthy
const numberGreaterThanZero; // <-- falsy
var emptyArray = []; // <-- truthy, we'll explore more about this next
const emptyArray = []; // <-- truthy, we'll explore more about this next
var emptyObject = {}; // <-- truthy
const emptyObject = {}; // <-- truthy
```
## Diversão com Arrays