Destructuring in JavaScript
When you work with JavaScript, you deal with data like this all the time:
const user = {
name: "Nausheen",
age: 22,
city: "Delhi"
};
Now suppose you want to use these values.
What do you usuall
codexninja.hashnode.dev4 min read