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

130
Views
How can I modify and extend properties of an object located in useState Array?

I'm a react.js beginner, searching for methods to alter my data structure. For example, I want to push new objects into the children-array or remove them by key.

What is the appropriate way to do that?

const [treeData, setTreeData] = useState([
  {
    title: "parent 1",
    key: "0-0",
    icon: <UserAddOutlined />,
    children: [
      {
        title: "parent 1-0",
        key: "0-0-0",
        icon: <UserAddOutlined />,
        children: [
          {
            title: "leaf",
            key: "0-0-0-0",
            icon: <UserAddOutlined />,
          },
          {
            title: "leaf",
            key: "0-0-0-1",
            icon: <UserAddOutlined />,
          },
        ],
      },
      {
        title: "parent 1-1",
        key: "0-0-1",
        icon: <UserAddOutlined />,
        children: [
          {
            title: "sss",
            key: "0-0-1-0",
            icon: <UserAddOutlined />,
          },
        ],
      },
    ],
  },
]);
about 4 years ago · Juan Pablo Isaza
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!