JSFiddle - React, Tailwind, and code Playground

by shrenuj

HTML

<!DOCTYPE html>
<html>
<head>
  <title>Title Goes Here</title>
</head>
<body>
  <script type="text/javascript">
     var mydate = new Date();
     mydate.setMonth(mydate.getMonth()+2);
     document.write(mydate);
  </script>
</body>
</html>