- Fork and clone repo
- cd into project directory
- create a Waiter class, that has a name (that's passed in during object instantiation)
- create a method
.welcomeGuests()
, which returns a string: 'welcome! what can i do for you today?' - create a method
takeOrder(orders)
that receives and stores an array of orders (strings) provided by customers - create a method
repeatOrder()
that reads out each order in a single string: "you have ordered: some item, another item, ..., last item"