“NULL vs Undefined” Kod odpowiedzi

JavaScript Sprawdź zmienne zerowe

var myVar=null;

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

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

zerowy niezdefiniowany

  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

NULL vs Undefined

//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

Odpowiedzi podobne do “NULL vs Undefined”

Pytania podobne do “NULL vs Undefined”

Więcej pokrewnych odpowiedzi na “NULL vs Undefined” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu