How can I check if a localstorage variable is null or undefined?

后端 未结 6 1424
难免孤独
难免孤独 2021-02-05 11:35

I have this code:

var sideBar = localStorage.getItem(\'Sidebar\');

I want to check if sideBar is defined and not null in an if statement. I am

相关标签:
6条回答
  • 2021-02-05 11:48
    1. localStorage uses Strings to save the data, i.e., you always have to consider JavaScript String logic when reasoning on null vs. undefined, etc.
    2. If you set the "sideBar" make sure that you do not use "falsy" values. For Strings thats only the empty String "". If you do something else (e.g., some mathematics) before if-checking the variable, you need to consider additional cases.

    Here are some tests that show how JavaScript treats certain values in if statements:

    > ("")? true : false
    false                 # empty string         -> if fails
    > (0)? true : false
    false                 # Number 0             -> if fails
    > ("0")? true : false
    true                  # String "0"           -> if succeeds
    > (null)? true : false
    false                 # JavaScript null      -> if fails
    > ("someText")? true : false
    true                  # any other String     -> if succeeds
    > (" ")? true : false
    true                  # a space character    -> if succeeds
    

    I would not use the awkward double checks for null and undefined. If you directly check the result of localStorage.getItem the result is either null or a String. If you then also consider the empty String "" as "falsy", a simple if statement is fine:

    var sideBar = localStorage.getItem('Sidebar');
    
    if(sideBar) {
       // do something with the sideBar
    }
    else {
       // do something without the sideBar
    }
    

    To do a real check for the sideBar never being set in localStorage you need to add a check for the empty String and treat that as "defined":

    if(sideBar || sideBar === "") {
        // sideBar defined, maybe even as empty String
    }
    else {
        // sideBar not set in localStorage
    }
    
    0 讨论(0)
  • 2021-02-05 11:59

    This should work, and no there isn't a way outside of an "if", even if it ternary operator,

    if( !value ) {
    }
    

    This will check if there value is "truethy" and should cover both "null" and "undefined".

    0 讨论(0)
  • 2021-02-05 12:03

    best practice for checking if a variable is defined and not null:

    if (typeof sideBar !== 'undefined' && sideBar !== null)
    

    edited realized you're not checking if something is undefined, you're checking that it's defined, so edited again to answer your request more accurately

    0 讨论(0)
  • 2021-02-05 12:12

    If statements can be joined using &&

    It is advisable to use '==='. e.g. if (sideBar === undefined && sideBar !== null)

    http://www.w3schools.com/jsref/jsref_undefined.asp

    0 讨论(0)
  • 2021-02-05 12:13

    Yes, you bind the two conjunctively (meaning both must be true) with &&

    So... if (sideBar === undefined && sideBar !== null) will evaluate to true if and only if each condition evaluates to true.

    0 讨论(0)
  • 2021-02-05 12:15

    As W3 Manual explicitly explained: The getItem(key) method must return the current value associated with the given key. If the given key does not exist in the list associated with the object then this method must return null.

    It means, no need to check undefined, If it is undefined then the result of the getItem() method will be null. You need to just check against null.

    if (localStorage.getItem("Sidebar") !== null) {
    //...
    }
    
    0 讨论(0)
提交回复
热议问题