4-3-splats.coffee 321 B

12345678910
  1. coffee = 'Starducks'
  2. searchLocations = (brand, cities...) ->
  3. "Looking for #{brand} in #{cities.join(', ')}"
  4. console.log searchLocations coffee, 'Orlando'
  5. console.log searchLocations coffee, 'Orlando', 'Miami', 'Winter Park'
  6. params = ['Orlando', 'Miami', 'Winter Park']
  7. console.log searchLocations(coffee, params...)