JSFiddle - React, Tailwind, and code Playground

by blueseal

HTML

<script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.7.0/moment.min.js"></script>

JavaScript

var check = moment('2014-07-28', 'YYYY/MM/DD');
    
var month = check.format('M');
var dayF = check.startOf('month').format('D');
var dayL   = check.endOf("month").format('D');
var year  = check.format('YYYY');

console.log(month, dayF, dayL, year);