JavaScript check if variable exists (is defined/initialized)

前端 未结 29 1932
孤城傲影
孤城傲影 2020-11-22 00:59

Which method of checking if a variable has been initialized is better/correct? (Assuming the variable could hold anything (string, int, object, function, etc.))



        
29条回答
  •  情书的邮戳
    2020-11-22 01:27

    you can use the typeof operator.

    For example,

    var dataSet;
    
    alert("Variable dataSet is : " + typeof dataSet);
    

    Above code snippet will return the output like

    variable dataSet is : undefined.

提交回复
热议问题