JavaScript toISOString() Method
THE WORLD'S LARGEST WEB DEVELOPER SITE

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();
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