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 9254603
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T11:30:46+00:00 2026-06-18T11:30:46+00:00

Given a large JSON table in localStorage and a given key provided by the

  • 0

Given a large JSON table in localStorage and a given key provided by the user, I access an associated value. But if the value and/or the key doesn’t exist, then I want to create them. However…

Given the following JSON:

var data = [ 
{ 'myKey': 'A', 'status': 0 },
{ 'myKey': 'B', 'status': 1 },
{ 'myKey': 'C' },
{ 'myKey': 'D', 'status': 1 }
];

And the following JS:

function getJsonVal(json, itemId) {
    for (var i in json) {
        if (json[i].myKey == itemId) {
            return json[i]; 
        }
    }
}

If I…

// request non-existing-in-JSON value:
valC = getJsonVal(data, 'C');
alert("this is C's value: "+ valC)

or

// request non-existing-in-JSON key:
keyE = getJsonVal(data, 'E');
alert("this is E: "+ keyE);

the script just stop midway.

I wished to have some error value allowing me to made something like If ( null|| undefined ) Then create new key/value, but my script just stop because there these items are not existing. Any work around ? Jsfiddle appreciate.

  • 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-06-18T11:30:47+00:00Added an answer on June 18, 2026 at 11:30 am

    With the typeof operator you can safely check, whether a property is set

    function getJsonVal(json, itemId) {
        for (var i in json) {
            if (typeof json[i].myKey != 'undefined' && json[i].myKey == itemId) {
                return json[i]; 
            }
        }
        return 'someDefault';
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given a large table (10-100 million rows) what's the best way to add some
This code works great for generating thumbnails, but when given a very large (100MB+)
Given a large legacy project utilizing ASP.NET, javascript, css, etc, technologies, I was wondering
Given a large text block from a WYSIWYG like: Lorem ipsum dolor sit amet,
Suppose I'm given a large dictionary in flat file with 200 million words and
I have been given a large quantity of Xml's where I need to pull
Assume you are given a large number of variables that need to be initialized
Here is a real-world combinatorial optimization problem. We are given a large set of
Given a very large string. I would like to process parts of the string
Our .NET app copies large files, and needs to give the user feedback; so

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.