JSFiddle - React, Tailwind, and code Playground

JavaScript

function first() {alert("This is the first."); }
function second() {alert("This is the second."); }
function third() {alert("This is the third."); }

function start() {
  first();
  second();
  third();
}

start();