jeudi 11 octobre 2018

JavaScript :Test d’égalité

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

Nombres :

isNaN(NaN) => true
isNaN(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