JSFiddle - React, Tailwind, and code Playground

by chhhris

JavaScript

var sayHello = function alertGreeting(name){
     var greeting = "Hello";
     function displayName() {
          alert(greeting + " " + name);
     };
     displayName();
};


sayHello("Chris");