const response = {
msg: "success",
tags: ["programming", "javascript", "computer"],
body: {
count: 5,
data: ["File 1", "File 2"],
},
};
// The key exists
const { msg: message = 'Hello' } = response;
console.log(message); // success
// The key does not exist
const { search: searchText = "programming" } = response;
console.log(searchText); // programming
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)