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

  • Home
  • SEARCH
  • 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 6088119
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T11:56:55+00:00 2026-05-23T11:56:55+00:00

Can you guys help me make a shorthand function determining whether an object property

  • 0

Can you guys help me make a shorthand function determining whether an object property exists? In 99% of the cases I want to use it to check whether the returned json object contains the specified property or not. Note that there is no guarantee that any of the parent properties or even the json object itself must be defined.

I was thinking of something in this manner:

function propertyExists(<property>) {
    // property is something like data.property.property
    return typeof(data) !== "undefined" && typeof(data.property) !== "undefined" && typeof(data.property.property) !== "undefined";
}

I don’t know how to write it in a dynamic manner to check all the parent properties. Also the in-parameter should be just a reference to the “data.property.property” and not a string, so I don’t know how to find the parent properties within that either.

  • 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-23T11:56:55+00:00Added an answer on May 23, 2026 at 11:56 am

    Here’s a function I have lying around from a project that tells you if a property is defined (including all of its parent properties, if any):

    function isDefined(target, path) {
        if (typeof target != 'object' || target == null) {
            return false;
        }
    
        var parts = path.split('.');
    
        while(parts.length) {
            var branch = parts.shift();
            if (!(branch in target)) {
                return false;
            }
    
            target = target[branch];
        }
    
        return true;
    }
    

    It’s supposed to be used like this:

    var data = { foo: { bar: 42 } };
    isDefined(data, "foo"); // true
    isDefined(data, "foo.bar"); // true
    isDefined(data, "notfoo"); // false
    isDefined(data, "foo.baz"); // false
    

    You can easily tweak this to return the value itself (or null) instead of true/false.

    Update: After reading the comments on the question, I googled the Javascript in operator and replaced the typeof test with that. Now the code is written “how it was meant to be”.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hi Guys can you please help me with this error? What is it? Server
Do you guys know how I can use the Curl command line to POST
I'm very confused about using destructors in Qt4 and hope, you guys can help
Can you guys tell me the difference between them? By the way, is there
Are there any popular Mysql rss feeds you guys can recommend? IBM has random
I keep on hearing about concurrent programing every where. Can you guys throw some
Guys, can someone give me a brief run through of how to change the
Can anyone (maybe an XSL-fan?) help me find any advantages with handling presentation of
am very much interested in unix. Want to learn in and out. Can you
I need to customize my table view can anyone help me how to do

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.