JSFiddle - React, Tailwind, and code Playground

by Evan Chavez

CSS

html{
color: #ffffff !important;
}

JavaScript

var utc-T;
var tomorrow = new Date(new Date().setDate(new Date().getDate() + 1)).toISOString().split('T')[0].replace(/-/g,'/');
utcT = tomorrow;
document.write("Tomorrow: " + utcT);

var utcN;
var tomorrow = new Date(new Date().setDate(new Date().getDate())).toISOString().split('T')[0].replace(/-/g,'/');
utcN = tomorrow;
document.write("Today: " + utcN);