JSFiddle - React, Tailwind, and code Playground

by MSBAStudent

JavaScript

hour = 21;

if (hour < 18) {
  greeting = "Good day";
} else {
  greeting = "Good evening";
}

console.log(greeting);