Answers for "javascript time now in milliseconds"

1

javascript get current time

var date = new Date(Date.UTC(2012, 11, 20, 3, 0, 0));

// formats below assume the local time zone of the locale;
// America/Los_Angeles for the US

// US English uses 12-hour time with AM/PM
console.log(date.toLocaleTimeString('en-US'));
// "7:00:00 PM"

// British English uses 24-hour time without AM/PM
console.log(date.toLocaleTimeString('en-GB'));
// "03:00:00"
Posted by: Guest on July-10-2020
2

javascript today date in epoch

const start = Date.now(); 
/*gives the number of milliseconds elapsed since January 1, 1970 00:00:00 UTC.*/
Posted by: Guest on June-25-2020

Code answers related to "javascript time now in milliseconds"

Code answers related to "Javascript"

Browse Popular Code Answers by Language