Last active
August 29, 2015 14:22
-
-
Save pablomdo/5136f29596432f580261 to your computer and use it in GitHub Desktop.
Diferenças entre os operadores de igualdade e identidade
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// number e string | |
1 == '1'; // true | |
// number e boolean | |
0 == false; // true | |
// object e undefined | |
null == undefined; // true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Array vazio e string vazia | |
// são coisas diferentes... | |
[] == ''; // true, WTF?! | |
// Se a == b e b == c, | |
// então a == c... | |
'' == 0 // true | |
0 == '0' // true | |
'' == '0' // false, WTF?! | |
// Array de strings e uma string, hmmm | |
['wow'] == 'wow'; // true, WTF?! | |
// Quebra de linha igual a false? | |
'\n' == false; // true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 === '1'; // false | |
['wow'] === 'wow'; // false | |
'' === false; // false | |
null === undefined; // false | |
1 === 1; // true | |
'wow' === 'wow'; // true | |
typeof null === 'object'; // true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment