Last active
July 23, 2018 04:35
-
-
Save adamgiese/1c5bec2cf8a2326900ef14a71f3f431c to your computer and use it in GitHub Desktop.
Restaurants List
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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