Skip to content

Instantly share code, notes, and snippets.

@vxhviet
Last active June 22, 2023 10:24
Show Gist options
  • Save vxhviet/4ba4f63e8e0948e7b5345b3457e5098d to your computer and use it in GitHub Desktop.
Save vxhviet/4ba4f63e8e0948e7b5345b3457e5098d to your computer and use it in GitHub Desktop.

[JavaScript] - ES6 Enhanced Object Literal

SOURCE

const weekdays = ['mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun'];

const openingHours = {
  // Object keys can be dynamically assigned in ES6 by placing an expression in square brackets []
  [weekdays[3]]: { 
    open: 12,
    close: 22,
  },
  [weekdays[4]]: {
    open: 11,
    close: 23,
  },
  [`day-${2 + 4}`]: {
    open: 0,
    close: 24,
  },
};

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'],

  // ES6 enhanced object literal
  openingHours,

  // function is also shorter
  order(starterIndex, mainIndex) {
    return [this.starterMenu[starterIndex], this.mainMenu[mainIndex]];
  },
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment