Object Destructuring.
Object destructuring is an approach to access an object's properties. We use object destructuring because it dries our code by removing duplication.const
band={
bandName:"Led",
famousSong:"stairway to heaven",
year:1996,
anotherFamou...
techbyjeevika.io1 min read