JSFiddle - React, Tailwind, and code Playground

HTML

<div id="container">
    
</div>

JavaScript

var today  = new Date(),
    myDate = today.getDate() + '/' + ((today.getMonth() + 1) % 12) + '/' + today.getFullYear();
$("#container").append('<span>' + myDate + '</span>');