Firebase TIMESTAMP to date and Time

后端 未结 18 2556
温柔的废话
温柔的废话 2020-11-27 03:39

I am using firebase for my chat application. In chat object I am adding time stamp using Firebase.ServerValue.TIMESTAMP method.

I need to show the messa

18条回答
  •  余生分开走
    2020-11-27 03:53

    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)
    

提交回复
热议问题