https://dorey.github.io/JavaScript-Equality-Table/
https://www.sitepoint.com/javascript-truthy-falsy/
Comparaison des objets par adresse et non pas par valeur, exemple :
var a = {a:1};
var b = {a:1};
isNaN != NaN
isNaN(undefined) => true => best practice = Number.isNaN(
https://stackoverflow.com/questions/25176459/is-number-isnan-more-broken-than-isnan
https://www.sitepoint.com/javascript-truthy-falsy/
Comparaison des objets par adresse et non pas par valeur, exemple :
var a = {a:1};
var b = {a:1};
isNaN != NaN
Nombres :
isNaN(NaN) => trueisNaN(undefined) => true => best practice = Number.isNaN(
https://stackoverflow.com/questions/25176459/is-number-isnan-more-broken-than-isnan
Aucun commentaire:
Enregistrer un commentaire
to criticize, to improve