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);
});
by MasterAlex
<div class="date"></div>
$(document).ready(function() {
var yourDate = new Date(1257290640);
$('.date').text(yourDate);
});