Skip to content

Instantly share code, notes, and snippets.

@pablomdo
Last active August 29, 2015 14:22
Show Gist options
  • Save pablomdo/5136f29596432f580261 to your computer and use it in GitHub Desktop.
Save pablomdo/5136f29596432f580261 to your computer and use it in GitHub Desktop.
Diferenças entre os operadores de igualdade e identidade
// number e string
1 == '1'; // true
// number e boolean
0 == false; // true
// object e undefined
null == undefined; // true
// 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
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