JSFiddle - React, Tailwind, and code Playground
by karlovac
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.26.0/moment.min.js" integrity="sha256-5oApc/wMda1ntIEK4qoWJ4YItnV4fBHMwywunj8gPqc=" crossorigin="anonymous"></script>
JavaScript
const datetime = moment.utc('2020-05-10 22:38:49').startOf('day').fromNow();
// .startOf('day').fromNow();
console.log(datetime)
console.log(moment('2020-05-10 22:38:49').utc().format());
console.log(moment('2020-05-10 22:38:49').format());