0

I saw in some lecture the following code:

   const weekdays = ['mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun'];
const openingHours = {
  [weekdays[3]]: {
    open: 12,
    close: 22,
  },
  [weekdays[4]]: {
    open: 11,
    close: 23,
  },
  [weekdays[5]]: {
    open: 0, // Open 24 hours
    close: 24,
  },
};

I can't understand why we need to wrap weekdays[i] with a square brackets? Can someone explain me?

Eitanos30
  • 1,331
  • 11
  • 19

0 Answers0