const response = {
body: {
message: 'destructure this',
},
};
const {
body: { message },
} = response;
console.log(message); // 'destructure this'
Thanks for reading 💙
Follow @codedrops.tech for daily posts.
Instagram ● Twitter ● Facebook
Micro-Learning ● Web Development ● Javascript ● MERN stack ● Javascript
codedrops.tech
Top comments (0)