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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T10:04:55+00:00 2026-05-21T10:04:55+00:00

First of all, I converted a Plist(XML formatted) to JSON with some online tool,

  • 0

First of all, I converted a Plist(XML formatted) to JSON with some online tool, this isn’t the problem. I managed to pick the important values from this rather big JSON file. With this important information I am rebuilding a new JSON file that is very lean and contains information I can use for a plug-in — that I will create later.

The plist conversion to JSON is ugly. At some point <true/> and <false/> are converted to JSON, leaving this in the JSON: "false":"", or "true":"",.

I am using jQuery

check JSfiddle for an example jsfiddle example

or here

// Simplified (not really a JSON file, but this will do it for explaining) 
var themeJSON = {
    "item": {
        "false": "",
    },
};

// I need to know if its enabled: "true" or disabled: "false"

// function for checking if this is the default option
function checkDefault() {
    // true is a keyword!
    if (themeJSON.item.true) {
        return "1";
    // so is false!
    } else(themeJSON.item.false) {
        return "0";
    }
}

Maybe I use some other function such as find() ?

updated for answer:
thanks to the comments, this is what I have now:

function checkDefault() {
    if (item.hasOwnProperty("true")) {
        return "1";
    } else if(item.hasOwnProperty("false")) {
        return "0";
    }
}
  • 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-21T10:04:56+00:00Added an answer on May 21, 2026 at 10:04 am

    When an object property has a name which is a reserved keyword, the array index notation can be used to reference it.

    A way of checking whether item has a property named false:

    > themeJSON.item.hasOwnProperty("false");
    true
    

    This not ideal because a single object could have both a false property and a true property.

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

Sidebar

Related Questions

First of all, this isn't for a keylogger, it's for an input in a
first of all some details: I configured security as below in web.xml view plaincopy
First of all, apologize because I have seen some posts about this, but I
First of all there is probably a question like this already but i couldn't
First of all I want to mention two things, One: My code isn't perfect
First of all,thanks for reading my question. i have the following Json as a
in first ajax call server returns a json string that is converted to js
First of all sorry for this simple question, after spending a lot of time
First of all, I'm quite new to the Android and JAVA world (coming from
first of all i would like to say i know its probably an easy

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.