JSFiddle - React, Tailwind, and code Playground

by Tom M

JavaScript

let end = new Date(2019, 02, 29);

//


function ticker() {
let start = Date.now();
console.log(start);
}

function timer() {
setInterval( ticker, 1000);
}
timer();