“DateTime UTC -Isoformat in JS” Code-Antworten

ISO -Datum 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
Crazy Caracal

ISO bisher JavaScript

date = new Date('2013-03-10T02:00:00Z');
date.getFullYear()+'-' + (date.getMonth()+1) + '-'+date.getDate();//prints expected format.
Lucky Lapwing

DateTime UTC -Isoformat in JS

const moment = require("moment");
const now = moment().utc().toISOString();
// OR
const now = moment(new Date()).utc().toISOString();
hulk

Ähnliche Antworten wie “DateTime UTC -Isoformat in JS”

Fragen ähnlich wie “DateTime UTC -Isoformat in JS”

Weitere verwandte Antworten zu “DateTime UTC -Isoformat in JS” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen