JSFiddle - React, Tailwind, and code Playground
by fergmux
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.26.0/moment.min.js"></script>
JavaScript
const x = '2020-12-21 00:00:00.000Z'
console.log(
moment()
.add(31, 'days')
.isAfter(x)
)