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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T22:17:27+00:00 2026-05-25T22:17:27+00:00

I have a JSON object I’m retrieving from a server, sometimes its really simple

  • 0

I have a JSON object I’m retrieving from a server, sometimes its really simple such as:

{ "urls": ["http://google.com", "http://bing.com"] }

However I need to check if urls['tasks']['ipv6'] contains true, the code I’m using is:

if (urls['tasks']['ipv6'] === true) {
  console.log('true');
}

But because urls[‘tasks’] doesn’t exist I get the following error:

Uncaught TypeError: Cannot read property 'ipv6' of undefined

Is there an easy way to do this? I’m having a really hard time find a solution online. I’ve also tried jQuery’s $.isEmptyObject and would be happy with a jQuery based solution. For reference I’m actually using this code in node.js.

  • 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-25T22:17:28+00:00Added an answer on May 25, 2026 at 10:17 pm

    This should do the trick for you.

    if (urls["tasks"] && urls["tasks"]["ipv6"] && urls["tasks"]["ipv6"] === true)
    {
        ...
    }
    

    You can add urls checking at left as well if you need to and you can omit the middle check urls["tasks"]["ipv6"], because if it’s undefined it definitely isn’t true.

    The thing is that you have to check first whether upper level properties exist before drilling down. And since Javascript (as well as majority of today’s languages) doesn’t use full boolean evolution this works.

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

Sidebar

Related Questions

I have a JSON object returned from server. It looks like this : {1:{id:1,name:autos},
I have a json object retrieved from server in my $(document).ready(...); that has an
I have created a json object from ruby with cobravsmongoose, however the attributes have
I have a form field which requires a json object as its value when
I have a json object returned from a third party api, it looks like:
Ok so i have the json object returned back from my script and I
I have a JSON object which is generated from my website, however I need
I have a json object that I'm loading from wordpress using the JSON API
I have the json object from remote site. When I vardump the json response.
I have a json object collection of geo locations that I build in the

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.