Date.toISOString()
Returns the date as a string, using the ISO standard
var 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
Syntax
dateObj.toISOString()Examples
Using toISOString()
toISOString()var today = new Date('05 October 2011 14:48 UTC');
console.log(today.toISOString()); // Returns 2011-10-05T14:48:00.000ZPolyfill
References
Contributors to this page
Last updated