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"
Thanks...
codedrops.hashnode.dev1 min read