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
var filledString = "some string in here"; // <-- truthy
var zero = 0; // <-- falsy
var numberGreaterThanZero // <-- truthy
var emptyArray = []; // <-- truthy, we'll explore more about this next
var emptyObject = {}; // <-- truthy
const string = ""; // <-- falsy
const filledString = "some string in here"; // <-- truthy
const zero = 0; // <-- falsy
const numberGreaterThanZero; // <-- falsy
const emptyArray = []; // <-- truthy, we'll explore more about this next
const emptyObject = {}; // <-- truthy
```
## Diversão com Arrays
@ -71,4 +71,4 @@ const match = { teamA: 0, teamB: 1 }
* [Falsy | Glossário | MDN](https://developer.mozilla.org/en-US/docs/Glossary/Falsy)
* [Truthy and Falsy: Quando tudo não é igual em JavaScript](https://www.sitepoint.com/javascript-truthy-falsy/)
* [Truthy and Falsy: Quando tudo não é igual em JavaScript](https://www.sitepoint.com/javascript-truthy-falsy/)