Skip to content

Instantly share code, notes, and snippets.

@Polkovn1k
Created June 30, 2023 11:14
Show Gist options
  • Save Polkovn1k/8fe4c529536c9bbdf25f050c7e6d1198 to your computer and use it in GitHub Desktop.
Save Polkovn1k/8fe4c529536c9bbdf25f050c7e6d1198 to your computer and use it in GitHub Desktop.
Object iterating (js)
let person = {
firstName: 'John',
lastName: 'Doe',
age: 25,
ssn: '123-456-2356'
};
Object.keys(person).forEach(key => {
console.log(`${key}: ${person[key]}`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment