Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

169
Views
How to loop through an array of object nth number of time so that it loop over all the child array of object if exist

How to loop through an array of object nth number of time so that it loop over all the child array of object if exist and get it's Id in order.

let = [{
  "id": "1",
  "child": [
    {
      "id": "12",
      "child": [
        {
          "id": "123",
          "child": [
           {
            "id": "1234"
           }
        }
      ]
    },
    {
      "id": "2",
      "child": [
        {
          "id": "22"
        }
      ]
    },
    {
      "id": "3"
    },
    {
      "id": "4",
      "child": [
        {

          "id": "42",
          "child": [
            {

              "id": "43"
            }
        }
      ]
    }
  ]
}]

Expected Output

[1,12,123,1234,2,22,3,4,42,43]

My try, It's not working and not getting any logic.

result.reduce((pv, cv) => {
  console.log(cv)

  let temp = cv
  let arr = []
  if(temp.hasOwnProperty("split")){
    arr = temp.split
    pv.push(temp.id)
    // again arr should loop, I'm still finding some logic!
  }
  return pv
}, [])

Kindly give some logical steps even if you won't like to answer. I'll try that!

about 4 years ago · Santiago Trujillo
1 answers
Answer question

0

You need a recursive function with a persistent variable pointing to the array. .reduce isn't really the right approach here, and your test of temp.split doesn't make any sense - the two properties in question are id and child. Unconditionally push the ID (not inside the if), and if the child array exists, call the recursive function on it.

const input=[{id:"1",child:[{id:"12",child:[{id:"123",child:[{id:"1234"}]}]},{id:"2",child:[{id:"22"}]},{id:"3"},{id:"4",child:[{id:"42",child:[{id:"43"}]}]}]}];

const getAllChildIds = (arr, ids = []) => {
  for (const { id, child } of arr) {
    ids.push(Number(id));
    if (child) getAllChildIds(child, ids);
  }
  return ids;
};
console.log(getAllChildIds(input));

about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!