JSFiddle - React, Tailwind, and code Playground

by MasterAlex

HTML

<div class="date"></div>

JavaScript

$(document).ready(function() {
    var yourDate = new Date(1257290640);
    $('.date').text(yourDate);
});