Skip to content

Instantly share code, notes, and snippets.

@vxhviet
Last active June 15, 2023 13:23
Show Gist options
  • Save vxhviet/40dc278a7192f046c97f72aea8a99066 to your computer and use it in GitHub Desktop.
Save vxhviet/40dc278a7192f046c97f72aea8a99066 to your computer and use it in GitHub Desktop.

[JavaScript] - Looping arrays: the for-of loop

SOURCE

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'],
};
const menu = [...restaurant.starterMenu, ...restaurant.mainMenu];
for (const item of menu) console.log(item);

// access indices
for (const item of menu.entries()) {
  console.log(`${item[0] + 1}: ${item[1]}`); // first element is the index, second element is the value
}

// destructure it
for (const [index, value] of menu.entries()) {
  console.log(`${index + 1}: ${value}`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment