How can I determine if a variable is 'undefined' or 'null'?

前端 未结 30 1878
耶瑟儿~
耶瑟儿~ 2020-11-22 03:30

How do I determine if variable is undefined or null?

My code is as follows:

var EmpN         


        
30条回答
  •  臣服心动
    2020-11-22 03:52

    var x;
    if (x === undefined) {
        alert ("only declared, but not defined.")
    };
    if (typeof y === "undefined") {
        alert ("not even declared.")
    };
    

    You can only use second one: as it will check for both definition and declaration

提交回复
热议问题