Skip to content

Instantly share code, notes, and snippets.

@matefs
Created October 12, 2023 17:29
Show Gist options
  • Save matefs/1d29482153947293fe62209af6d31b0c to your computer and use it in GitHub Desktop.
Save matefs/1d29482153947293fe62209af6d31b0c to your computer and use it in GitHub Desktop.
for-in e for-of

For in

const person = {
    name: 'John',
    age: 30,
    city: 'New York'
};

for (let key in person) {
    console.log(key + ': ' + person[key]);
}

For-of

const colors = ['red', 'green', 'blue'];

for (let color of colors) {
    console.log(color);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment