JSFiddle - React, Tailwind, and code Playground
by Alex Fogarty
HTML
Amazing Meal Assignment v2 (Meal parts alerted using a Return)
JavaScript
function amazingMeal(appetizer, maindish, dessert, drink) {
var mealParts = "My favorite meal is " + appetizer + ", " + maindish + ", " + dessert + " and " + drink;
return mealParts;
}
// Call the function and pass in parameters
var favoriteMeal= amazingMeal("baked clams","Coq au vin","cheese cake","red Wine");
// Alert the value of the variable within the function
alert(favoriteMeal);