Ask Your Question
2

How can I retrieve the value of the last index in a nested array of objects?

asked 2023-05-19 03:14:13 +0000

huitzilopochtli gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-05-19 03:24:02 +0000

bukephalos gravatar image

You can retrieve the value of the last index in a nested array of objects in JavaScript by accessing the last element of the outermost array and then the last element of the inner array.

Here's an example code snippet that demonstrates this:

let data = [
  {
    id: 1,
    items: [
      {
        name: 'apple',
        quantity: 2
      },
      {
        name: 'banana',
        quantity: 3
      }
    ]
  },
  {
    id: 2,
    items: [
      {
        name: 'orange',
        quantity: 5
      },
      {
        name: 'grape',
        quantity: 1
      }
    ]
  }
];

let lastItem = data[data.length - 1].items[data[data.length - 1].items.length - 1];
console.log(lastItem); // prints { name: 'grape', quantity: 1 }

In this example, we have an array of objects data, where each object has an items property that is an array of objects. To retrieve the value of the last index in the items array of the last object in the data array, we use the data.length - 1 index to access the last object in the data array, and then use data[data.length - 1].items.length - 1 to access the last object in the items array of that object.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-05-19 03:14:13 +0000

Seen: 7 times

Last updated: May 19 '23