19. MEDIUM | for...in vs for...of loop in JavaScript
for - in loop
Loops through the keys of an object.
// Syntax
for (let key in object) {
// code to be executed on each property
}
// example
const person = {
name: 'John',
age: 30,
city: 'N
javascript-topicwise-notes.hashnode.dev2 min read