- Create variables for name, street address, city, state, zip code for 3 people
- Create a
printLabel()function that takes all the variables for a person and will use a template literal to create a formatted label string like the following:
Example Output:
Kevin Yancy
1234 some street
Cordova, TN 38016
- The function should not do the printing!! The function should instead use a template literal and the parameters passed in return a formatted address string to the caller
- From your main calling code, print each person's address returned from the function in the console