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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T21:30:06+00:00 2026-06-14T21:30:06+00:00

Need some JSON help. I’m working with JSON similar to this: { GreatGrandfather: {

  • 0

Need some JSON help.
I’m working with JSON similar to this:

{
    GreatGrandfather: {
        GrandFather: {
            Father: [
                {
                    Son: [
                        {
                            Name: "Abu Nazir",
                            Detail: {
                                Class: "3rd Grade"
                            }
                        },
                        {
                            Name: "Dexter",
                            Detail: {
                                Class: "6th Grade"
                            }
                        },
                        {
                            Name: "Rick",
                            Detail: {
                                Class: "11th Grade"
                            }
                        }
                    ]
                },
                {
                    Son: [
                         {
                            Name: "Tom Walker",
                            Detail: {
                                Class: "3rd Grade"
                            }
                        },
                        {
                            Name: "Sgt Bastisa",
                            Detail: {
                                Class: "6th Grade"
                            }
                        },
                        {
                            Name: "The Governer",
                            Detail: {
                                Class: "11th Grade"
                            }
                        }
                    ]
                }
            ]
        }
    }
}

My question is how do I delete the Sons that have the Class value of “3rd Grade”?
So both Abu Nazir and Tom Walker will be deleted and each father will have only 2 sons?

Also, how would I add Sons to both fathers?

{Name: "Stewie",Detail: {Class:"Kindergarden"}}

and

{Name: "Peter",Detail: {Class:"1st Grade"}}

Thanks!

  • 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-14T21:30:07+00:00Added an answer on June 14, 2026 at 9:30 pm
    var obj = JSON.parse(jsonstring);
    obj.GreatGrandFather.GrandFather.Father.forEach(function(father) {
        var sons = father.Son.filter(function(son) {
            return son.Details.Class != "3rd Grade";
        });
        sons.push({Name: "Stewie",Detail: {Class:"Kindergarden"}});
        sons.push({Name: "Peter",Detail: {Class:1st Grade}});
        father.Son = sons;
    });
    var newjson = JSON.stringify(obj);
    

    Of course you might do it with loops instead of ES5.1-iterator functions, but I think you get the concept.

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

Sidebar

Related Questions

I am pretty new to YUI and need some help. I have a JSON
I have some data and need to create a json file with this structure
Need some regular expressions help. So far I have my code working to allow
Need some help to solve this. I have a gridview and inside the gridview
I'm currently using json-framework and need some help though parsing some JSON i'm getting
I'm having some problems with converting some JSON and I'm after some help. This
I need some help with using JSON and the bitcoin / blockexplorer json calls.
I need some help with this please I can't get a handle on it.
I need some help with some logic. I have a JSon feed with 600
Need some help please with this error : TypeError : 'unicode' object does not

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.