From eb0dfaa4d1d952f1d281d423667bc32c77d097fb Mon Sep 17 00:00:00 2001 From: Dededede4 Date: Sat, 29 Jul 2023 13:50:11 +0200 Subject: [PATCH] Update string.md : Adds a clarification concerning strings that do not respect the syntax --- docs/parse/string.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/parse/string.md b/docs/parse/string.md index 37ab250ac..180280416 100644 --- a/docs/parse/string.md +++ b/docs/parse/string.md @@ -5,6 +5,8 @@ title: String Parse the given string in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (a space instead of the 'T' is allowed) and return a Day.js object instance. +If the provided string does not adhere to the ISO 8601 format, it will be parsed using the native JavaScript Date object. Depending on the browser, other formats like RFC 2822 might also be accepted. + ```js dayjs('2018-04-04T16:00:00.000Z') dayjs('2018-04-13 19:18:17.040+02:00')