RSRitu Soodinjs-basics-series.hashnode.dev·Mar 26 · 5 min readDestructuring in JavaScript In JavaScript, we often work with arrays and objects. Normally, to get values from them, we write repetitive code like this: const user = { name: "Ritu", age: 30 }; const name = user.name; const age =00