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...
Dec 12, 20201 min read1