Moment JS playground.

by oakley808

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");

const end = moment("2024-07-13T20:03:51.069400+00:00");
const start = moment("2024-07-13T16:59:40.857900+00:00");

const diff = end.diff(start, "hour");
out.innerText = diff;