“NULL против неопределенного” Ответ

Проверка JavaScript для нулевых переменных

var myVar=null;

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

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

нулевой не определен

  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 против неопределенного

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

Ответы похожие на “NULL против неопределенного”

Вопросы похожие на “NULL против неопределенного”

Больше похожих ответов на “NULL против неопределенного” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования