JSFiddle - React, Tailwind, and code Playground
by CorFlamberg
HTML
<script src="http://momentjs.com/downloads/moment.min.js"></script>
JavaScript
// set up
let start = 123456789; // some random moment in time (in ms)
let end = 234567890; // some random moment after start (in ms)
var diff = moment.duration({hours: 2, minutes: 2})
// execution
let f = moment.duration({seconds: 2, minutes: 2});
alert(f)