JSFiddle - React, Tailwind, and code Playground

by Alex Fogarty

HTML

Amazing Meal Assignment (Meal parts defined in body of function)

JavaScript

// Declare the variable with no value
    var mealParts;
     
    // Create the function
    function amazingMeal(appetizer, maindish, dessert, drink) {
    mealParts = "My favorite meal is " + appetizer + ", " + maindish + ", " + dessert + " and " + drink;
    }
    // Call the function and pass in parameters
    amazingMeal("baked clams","Coq au vin","cheese cake","red wine");
     
    // Alert the value of the variable within the function
    alert(mealParts);