DEV Community

Mehul Lakhanpal
Mehul Lakhanpal

Posted on

Destructuring from nested object and array

const response = {
  msg: "success",
  tags: ["programming", "javascript", "computer"],
  body: {
    count: 5,
    data: ["File 1", "File 2"],
  },
};

const {
  body: {
    data: [file1],
  },
} = response;

console.log(file1); // "File 1"
Enter fullscreen mode Exit fullscreen mode

Thanks for reading 💙

Follow @codedrops.tech for daily posts.

InstagramTwitterFacebook

Micro-Learning ● Web Development ● Javascript ● MERN stack ● Javascript

codedrops.tech

Top comments (0)