JSFiddle - React, Tailwind, and code Playground
by cormip
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
JavaScript
myDate = '2018-07-01'
startDate = moment(myDate).format('llll')
endDate = moment(myDate).add(1, 'Q').format('llll')
document.write(startDate + ' - ' + endDate)