Checking if a variable exists in javascript

后端 未结 7 1140
Happy的楠姐
Happy的楠姐 2021-01-31 06:58

I know there are two methods to determine if a variable exists and not null(false, empty) in javascript:

1) if ( typeof variableName !== \'undefined\' && v

相关标签:
7条回答
  • 2021-01-31 07:37

    If you want to check if a variable (say v) has been defined and is not null:

    if (typeof v !== 'undefined' && v !== null) {
        // Do some operation  
    }
    

    If you want to check for all falsy values such as: undefined, null, '', 0, false:

    if (v) {
       // Do some operation
    }
    
    0 讨论(0)
  • 2021-01-31 07:39

    if (variable) can be used if variable is guaranteed to be an object, or if false, 0, etc. are considered "default" values (hence equivalent to undefined or null).

    typeof variable == 'undefined' can be used in cases where a specified null has a distinct meaning to an uninitialised variable or property. This check will not throw and error is variable is not declared.

    0 讨论(0)
  • 2021-01-31 07:51
    if ( typeof variableName !== 'undefined' && variableName )
    //// could throw an error if var doesnt exist at all
    
    if ( window.variableName )
    //// could be true if var == 0
    
    ////further on it depends on what is stored into that var
    // if you expect an object to be stored in that var maybe
    if ( !!window.variableName )
    //could be the right way
    
    best way => see what works for your case
    
    0 讨论(0)
  • 2021-01-31 07:52

    A variable is declared if accessing the variable name will not produce a ReferenceError. The expression typeof variableName !== 'undefined' will be false in only one of two cases:

    • the variable is not declared (i.e., there is no var variableName in scope), or
    • the variable is declared and its value is undefined (i.e., the variable's value is not defined)

    Otherwise, the comparison evaluates to true.

    If you really want to test if a variable is declared or not, you'll need to catch any ReferenceError produced by attempts to reference it:

    var barIsDeclared = true; 
    try{ bar; }
    catch(e) {
        if(e.name == "ReferenceError") {
            barIsDeclared = false;
        }
    }
    

    If you merely want to test if a declared variable's value is neither undefined nor null, you can simply test for it:

    if (variableName !== undefined && variableName !== null) { ... }
    

    Or equivalently, with a non-strict equality check against null:

    if (variableName != null) { ... }
    

    Both your second example and your right-hand expression in the && operation tests if the value is "falsey", i.e., if it coerces to false in a boolean context. Such values include null, false, 0, and the empty string, not all of which you may want to discard.

    0 讨论(0)
  • 2021-01-31 07:56

    It is important to note that 'undefined' is a perfectly valid value for a variable to hold. If you want to check if the variable exists at all,

    if (window.variableName)
    

    is a more complete check, since it is verifying that the variable has actually been defined. However, this is only useful if the variable is guaranteed to be an object! In addition, as others have pointed out, this could also return false if the value of variableName is false, 0, '', or null.

    That said, that is usually not enough for our everyday purposes, since we often don't want to have an undefined value. As such, you should first check to see that the variable is defined, and then assert that it is not undefined using the typeof operator which, as Adam has pointed out, will not return undefined unless the variable truly is undefined.

    if ( variableName  && typeof variableName !== 'undefined' )
    
    0 讨论(0)
  • 2021-01-31 07:56

    I found this shorter and much better:

        if(varName !== (undefined || null)) { //do something }
    
    0 讨论(0)
提交回复
热议问题