JSFiddle - React, Tailwind, and code Playground

by TheDiamondDoge

JavaScript

let phrase = "Hello";

if (true) {
  let user = "John";

  function sayHi() {
    alert(`${phrase}, ${user}`);
  }
}

sayHi();