JavaScript toISOString() Method

Clash Royale CLAN TAG#URR8PPP
googletag.cmd.push(function() googletag.display('div-gpt-ad-1422003450156-2'); );
JavaScript toISOString() Method
❮ JavaScript Date Object
Example
Return a Date object as a String, using the ISO standard:
var d = new Date();
var n = d.toISOString();
<!--
The result of n will be:
var d=new Date();
document.write(d.toISOString());
-->Try it Yourself »
Definition and Usage
The toISOString() method converts a Date object into a string, using the ISO standard.
The standard is called ISO-8601 and the format is: YYYY-MM-DDTHH:mm:ss.sssZ
Browser Support
The numbers in the table specifies the first browser version that fully supports the method.
| Method | |||||
|---|---|---|---|---|---|
| toISOString() | Yes | 9 | Yes | Yes | Yes |
Syntax
Date.toISOString()Parameters
| None |
Technical Details
| Return Value: | A String, representing the date and time using the ISO standard format |
|---|---|
| JavaScript Version: | ECMAScript 3 |
❮ JavaScript Date Object