Skip to content

Instantly share code, notes, and snippets.

@vxhviet
Last active June 22, 2023 11:41
Show Gist options
  • Save vxhviet/8ad40780037625b4b5e800af233625e6 to your computer and use it in GitHub Desktop.
Save vxhviet/8ad40780037625b4b5e800af233625e6 to your computer and use it in GitHub Desktop.

[JavaScript] - Looping Objects: Object Keys, Values and Entries

const restaurant = {
  name: 'Classico Italiano',
  location: 'Via Angelo Tavanti 23, Firenze, Italy',
  categories: ['Italian', 'Pizzeria', 'Vegetarian', 'Organic'],
  starterMenu: ['Focaccia', 'Bruschetta', 'Garlic Bread', 'Caprese Salad'],
  mainMenu: ['Pizza', 'Pasta', 'Risotto'],

  openingHours: {
    thu: {
      open: 12,
      close: 22,
    },
    fri: {
      open: 11,
      close: 23,
    },
    sat: {
      open: 0, // Open 24 hours
      close: 24,
    },
  },
};
// Property NAMES
const properties = Object.keys(restaurant.openingHours);
console.log(properties);

let openStr = `We are open on ${properties.length} days: `;

for (const day of properties) {
  openStr += `${day}, `;
}
console.log(openStr);

// Property VALUES
const values = Object.values(restaurant.openingHours);
console.log(values);

// Entire object
const entries = Object.entries(restaurant.openingHours);
console.log(entries);

for (const [day, { open, close }] of entries) {
  console.log(`On ${day} we open at ${open} and close at ${close}`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment