JSFiddle - React, Tailwind, and code Playground

by ckissi

JavaScript

const name = "John";
const timeOfDay = "evening";

const greeting = "Hello " + name + " I wish you a good " + timeOfDay;

/* const greeting = `Hello ${name} I wish you a good ${timeOfDay}!`; */

console.log(greeting);