I am using firebase for my chat application. In chat object I am adding time stamp using Firebase.ServerValue.TIMESTAMP method.
Firebase.ServerValue.TIMESTAMP
I need to show the messa
I converted to this format
let timestamp = '1452488445471'; let newDate = new Date(timestamp * 1000) let Hours = newDate.getHours() let Minutes = newDate.getMinutes() const HourComplete = Hours + ':' + Minutes let formatedTime = HourComplete console.log(formatedTime)