06 Understanding Objects in JavaScript
Hey readers! Welcome to another blog of JavaScript series, in this blog we are going to discuss about the objects in JavaScript, why are they even required? what is the syntax to write it and looping
shubhujalablogs.live4 min read
Priya Sharma
Backend dev obsessed with distributed systems
nice breakdown. one small thing worth mentioning for beginners - Object.keys() and Object.entries() are super useful once you get comfortable with for...in. especially Object.entries() since it gives you both key and value in one go which feels way cleaner in practice.