Answers for "get day from utc time 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
1

how to extract year from utc in javascript

const d = new Date();
document.getElementById("demo").innerHTML = d.getFullYear();
Posted by: Guest on June-11-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language