Answers for "utc date javascript"

3

javascript get utc time

const now = new Date()

// UTC Date String
now.toUTCString() // "Sun, 30 May 2021 14:59:15 GMT"

// ISO String
now.toISOString() // "2021-05-30T14:59:15.449Z"

// Unix timestamp
Math.floor(now / 1000) // 1622386878
Posted by: Guest on May-30-2021
6

javascript date to utc format

new Date().toISOString()
> '2012-11-04T14:51:06.157Z'
Posted by: Guest on October-11-2020
3

iso date javascript

const event = new Date('05 October 2011 14:48 UTC');
console.log(event.toString());
// expected output: Wed Oct 05 2011 16:48:00 GMT+0200 (CEST)
// (note: your timezone may vary)

console.log(event.toISOString());
// expected output: 2011-10-05T14:48:00.000Z
Posted by: Guest on January-01-2021
0

javascript creeate utc date

const now = new Date().toISOString();
console.log(now)
Posted by: Guest on March-22-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language