Αποτελέσματα Αναζήτησης
25 Μαρ 2015 · ISO 8601 is the international standard for the representation of dates and times. The ISO 8601 syntax (YYYY-MM-DD) is also the preferred JavaScript date format: Example (Complete date) const d = new Date ("2015-03-25"); Try it Yourself » The computed date will be relative to your time zone.
- Try It Yourself
The W3Schools online code editor allows you to edit code and...
- Tryit Editor V3.5
The W3Schools online code editor allows you to edit code and...
- JavaScript Date toISOString() Method
The toISOString () method returns a date object as a string,...
- Try It Yourself
The toISOString () method returns a date object as a string, using the ISO standard. The standard is called ISO-8601 and the format is: YYYY-MM-DDTHH:mm:ss.sssZ.
You can achieve this with a few simple extension methods. The following Date extension method returns just the timezone component in ISO format, then you can define another for the date/time part and combine them for a complete date-time-offset string.
The toISOString() method of Date instances returns a string representing this date in the date time string format, a simplified format based on ISO 8601, which is always 24 or 27 characters long (YYYY-MM-DDTHH:mm:ss.sssZ or ±YYYYYY-MM-DDTHH:mm:ss.sssZ, respectively).
There are many ways to format a date as a string. The JavaScript specification only specifies one format to be universally supported: the date time string format, a simplification of the ISO 8601 calendar date extended format. The format is as follows: YYYY-MM-DDTHH:mm:ss.sssZ
x. <!DOCTYPE html>. <html>. <body>. <h2>JavaScript Dates</h2>. <p>toISOString() returns a date as string, using the ISO standard:</p>. <p id="demo"></p>.
24 Μαρ 2015 · ISO 8601 is the international standard for the representation of dates and times. The ISO 8601 syntax (YYYY-MM-DD) is also the preferred JavaScript date format: Example (Complete date) var d = new Date ("2015-03-25"); Try it Yourself » The computed date will be relative to your time zone.