JSFiddle - React, Tailwind, and code Playground

by Phil Brown

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/sugar/2.0.6/sugar.js"></script>

JavaScript

let firstDay = Sugar.Date.create("2019-03-22");
console.log(firstDay)
let firstMonth = Sugar.Date.create(firstDay.format("%Y-%m-01"));
document.body.appendChild(document.createTextNode(firstMonth))