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

前端 未结 30 1872
耶瑟儿~
耶瑟儿~ 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

    To test if a variable is null or undefined I use the below code.

        if(typeof sVal === 'undefined' || sVal === null || sVal === ''){
          console.log('variable is undefined or null');
        }
    

提交回复
热议问题