“nulo vs indefinido” Respostas de código

JavaScript Verifique as variáveis ​​nulas

var myVar=null;

if(myVar === null){
    //I am null;
}

if (typeof myVar === 'undefined'){
    //myVar is undefined
}
Grepper

nulo indefinido

  console.log(null === null);  // true
  console.log(undefined === undefined);  // true
  console.log(null + undefined === null + undefined); // false

// null + undfined equals NaN, and NaN isn't equal to itself :(
Mysterious Monkey

nulo vs indefinido

//loosely equal (compare values between two variables)
null == undefined // true  ( null => 0 , undefined => NAN)

//strictly not equal (compare both type and value) 
null === undefined // false  (typeof null => object , typeof undefined => undefined)
null !== undefined // true   (typeof null => object , typeof undefined => undefined) 
Jaimin Patel

Respostas semelhantes a “nulo vs indefinido”

Perguntas semelhantes a “nulo vs indefinido”

Mais respostas relacionadas para “nulo vs indefinido” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código