Skip to content

Instantly share code, notes, and snippets.

@adamgiese
Last active July 23, 2018 04:35
Show Gist options
  • Save adamgiese/1c5bec2cf8a2326900ef14a71f3f431c to your computer and use it in GitHub Desktop.
Save adamgiese/1c5bec2cf8a2326900ef14a71f3f431c to your computer and use it in GitHub Desktop.
Restaurants List
const restaurants = [
{
name: "Dan's Hamburgers",
price: 'cheap',
cuisine: 'burger',
},
{
name: "Austin's Pizza",
price: 'moderate',
cuisine: 'pizza',
},
{
name: "Via 313",
price: 'expensive',
cuisine: 'pizza',
},
{
name: "Bufalina",
price: 'expensive',
cuisine: 'pizza',
},
{
name: "P. Terry's",
price: 'cheap',
cuisine: 'burger',
},
{
name: "Whataburger",
cuisine: 'burger',
},
{
name: "Chuy's",
cuisine: 'tex-mex',
price: 'moderate',
},
{
name: "Maudie's",
cuisine: 'tex-mex',
price: 'moderate',
},
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment