Moment JS playground.

by Sahil Kashyap

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>
<p id="output"></p>

JavaScript

const out = document.getElementById('output');

var compareDate = moment("01/01/2022", "DD/MM/YYYY");
var startDate   = moment("01/01/2022", "DD/MM/YYYY");
var endDate     = moment("01/02/2022", "DD/MM/YYYY");

// omitting the optional third parameter, 'units'

out.innerText = compareDate.isBetween(startDate, endDate, null, '[]');