Gistlib Logo

gistlib

convert from posix time to utc in javascript

const posixTime = 1628668187; // Example POSIX time const utcTime = new Date(posixTime * 1000).toUTCString(); console.log(utcTime);

index.tsx
0 chars
1 lines

similar javascript code snippets

get the date 5 days from now in javascript
get the date 5 days ago in javascript
get the date 5 months ago in javascript
get the date 5 weeks ago in javascript
get yesterday's date in javascript
get the date 5 weeks from now in javascript
get the date 5 years ago in javascript
get the date 5 months from now in javascript
get tomorrow's date in javascript
count days till new year in javascript

related categories

```-javascript
date

gistlibby LogSnag