Created
July 17, 2018 13:48
Revisions
-
adamgiese created this gist
Jul 17, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,42 @@ const restaurants = [ { name: "Pizza Planet", cuisine: 'Pizza', hours: { open: 11, close: 22, }, }, { name: "JJ's Diner", cuisine: 'Breakfast', hours: { open: 7, close: 14, }, }, { name: "Bob's Burgers", cuisine: 'Burgers', hours: { open: 11, close: 21, }, }, { name: "Central Perk", cuisine: 'Coffee', hours: { open: 6, close: 20, }, }, { name: "Monks Cafe", cuisine: 'American', hours: { open: 6, close: 20, } }, ];