Answers for "new date for mat to timestamp javascript"

10

javasctipt unix timestamp from date

Math.round(new Date().getTime() / 1000).toString()
Posted by: Guest on June-19-2020
7

timestamp js

var currentTimeInSeconds=Math.floor(Date.now()/1000); //unix timestamp in seconds
var currentTimeInMilliseconds=Date.now(); // unix timestamp in milliseconds
Posted by: Guest on July-22-2019
3

get time from date javascript

const handleTime = (dataD) => {
    let data= new Date(dataD)
    let hrs = data.getHours()
    let mins = data.getMinutes()
    if(hrs<=9)
       hrs = '0' + hrs
    if(mins<10)
      mins = '0' + mins
    const postTime= hrs + ':' + mins
    return postTime
  }
Posted by: Guest on August-08-2020

Code answers related to "new date for mat to timestamp javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language