Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6812485
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T20:27:18+00:00 2026-05-26T20:27:18+00:00

Sorry if the title is somehow misunderstanding. I am having some problems with a

  • 0

Sorry if the title is somehow misunderstanding.
I am having some problems with a web app if I try to parse values from a localstorage using json and there are no values, nothing works.

For example:

If you do this: alert(localStorage.getItem("something")); you get null: http://jsfiddle.net/yrGht/

but if you do this it blocks everything: alert(JSON.parse(localStorage["test"])); you get nothing and it stops everything from working: http://jsfiddle.net/7tCaS/

How can I solve this so that I alert the first and if it has no value then keep working because basically I want to set this: JSON.parse(localStorage["test"]) as a global variable but it blocks everything else: http://jsfiddle.net/gq9Ea/

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T20:27:18+00:00Added an answer on May 26, 2026 at 8:27 pm

    Try this:

    alert(JSON.parse(localStorage['test'] || null));
    

    The reason it fails is because JSON.parse(undefined_variable) gives an “invalid character” error. If localStorage['test'] doesn’t exist, it’s undefined, so it gets an error. The above code puts null in place if the value is falsy, which undefined is. However this does have ill effects if the value is 0, "" or another falsy value. If more specific code is needed, try:

    alert(JSON.parse(typeof localStorage['test'] == "undefined" ? null : localStorage['test']));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Sorry the title isn't more specific. I have some minor problems with a jquery
Sorry for the long and yet still somehow vague title! A friend of mine
Sorry about the vague question title, I just want to ascertain some things. Static
Sorry if the title seems confusing, but some examples are in order. Let's say
Sorry for title, I have an interop problem. The C dll that I'm using
Sorry the title isn't more help. I have a database of media-file URLs that
Sorry the title is not very clear. This is a follow up to my
Sorry the title's so convoluted... I must've tried for ten minutes to get a
Sorry if the title is poorly descriptive, but I can't do better right now
Sorry if the title doesn't make sense. Basically I have a series of strings

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.