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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T23:42:32+00:00 2026-06-17T23:42:32+00:00

i got this structure: { parent: { child-parent-1: { att1: null, att2: null, },

  • 0

i got this structure:

{
"parent": {
      "child-parent-1": {
            "att1": null,
            "att2": null,
      },
      "child-parent-2": {
            "att1": null,
            "att2": null,
      }
 }}

What i need to get, is the “child-parent-1” and “child-parent-2” names without knowing their names… since they are dynamically generated, like a hash code (askdl1km2lkaskjdnzkj2138).

Tried iterating but i couldn’t make it work. I always get the child attributes (key/value pair). Or the entire parent object with all the objects in it. Need to get the parent names i’ve mentioned above.

How can I do this?

Thanks in advance.

  • 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-17T23:42:34+00:00Added an answer on June 17, 2026 at 11:42 pm

    Iterating the object should work:

    var parents = {
        "parent": {
            "child-parent-1": {
                "att1": null,
                "att2": null,
            },
            "child-parent-2": {
                "att1": null,
                "att2": null,
            }
        }
    }
    
    for(var key in parents.parent){       // parents.parent because the children are in a object in `parents`
        console.log(key);                 // child-parent-1 / child-parent-2
        console.log(parents.parent[key]); // The objects themselves.
    }
    

    For me, this logs:

    // child-parent-1
    // Object {att1: null, att2: null}
    // child-parent-2
    // Object {att1: null, att2: null}
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this structure: class1 < class2 A simple child < parent relationship. I
I've got a simple structure Widget (parent table) id (IDENTITY) title WidgetChild (child table)
I got this formula from a data structure book in the bubble sort algorithm.
I've got this really basic table structure: Posts PostXTags PostTags There is a 1-n
I've got MongoKit structure like this: structure = { ... 'plugin': { 'id': unicode,
I've got an xml structure similar to this: <cars> <car> <make>Ford</make> <model>F-150</model> <year>2011</year> <customs>
My Java application has got a package structure similar to this: src/com/name/app src/com/name/app/do src/com/name/utils/db
Got this: Table a ID RelatedBs 1 NULL 2 NULL Table b AID ID
I have a parent/child table (simple tree) table structure (ID, ParentID), where I want
I got a really simple table structure like this: Table Page Hits id |

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.