Checking something isEmpty in Javascript?

后端 未结 18 2526
天涯浪人
天涯浪人 2020-12-12 12:38

How can I check if a variable is empty in Javascript? Sorry for the stupid question, but I\'m a newbie in Javascript!

if(response.photo) is empty {
    do so         


        
18条回答
  •  死守一世寂寞
    2020-12-12 13:03

    If you're testing for an empty string:

    if(myVar === ''){ // do stuff };
    

    If you're checking for a variable that has been declared, but not defined:

    if(myVar === null){ // do stuff };
    

    If you're checking for a variable that may not be defined:

    if(myVar === undefined){ // do stuff };
    

    If you're checking both i.e, either variable is null or undefined:

    if(myVar == null){ // do stuff };
    

提交回复
热议问题