JSFiddle - React, Tailwind, and code Playground
by Web Carvers
JavaScript
function vipDate(d, h, m, s)
{
this.days = (d!=undefined) ? d : 0;
this.hours = (h!=undefined) ? h : 0;
this.minutes = (m!=undefined) ? m : 0;
this.seconds = (s!=undefined) ? s : 0;
}
function startTimer(a, b)
{
}