I want show time under message as 1 min and 2 min etc. Time should be calculated according to the message arrival. Now I'm having this format 4:33:08 AM
and I want to calculate it according to message arrival and display it like Examples 1min
4min
25min
, I just wanted in that format. Help me finding the solution.
var today = new Date();
var time = today.toLocaleTimeString();
document.getElementById('message').innerHTML = time;
color: white;
position: relative;
float: left;
background-color: #343a40;
line-height: 20px;
border-radius: 5px;
padding: 10px 25px 10px 25px;
margin-left: 15px;
font-size: 15px;
<div id="message"></div>