You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: concepts/dates/about.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -161,7 +161,7 @@ Greater than (`>`) and greater than or equals (`>=`) as well as less than (`<`)
161
161
This works because JavaScript will try to coerce the date to a primitive.
162
162
163
163
<!-- prettier-ignore -->
164
-
~~~@exercism/advanced
164
+
~~~exercism/advanced
165
165
When doing a comparison between two dates or date and a number, JavaScript calls [`[Symbol.toPrimitive]("number")`][mdn-to-primitive] which internally calls [`date.valueOf()`][mdn-date-value-of].
166
166
The latter is the same as calling [`date.getTime()`][mdn-date-get-time].
Copy file name to clipboardExpand all lines: concepts/dates/introduction.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -161,7 +161,7 @@ Greater than (`>`) and greater than or equals (`>=`) as well as less than (`<`)
161
161
This works because JavaScript will try to coerce the date to a primitive.
162
162
163
163
<!-- prettier-ignore -->
164
-
~~~@exercism/advanced
164
+
~~~exercism/advanced
165
165
When doing a comparison between two dates or date and a number, JavaScript calls [`[Symbol.toPrimitive]("number")`][mdn-to-primitive] which internally calls [`date.valueOf()`][mdn-date-value-of].
166
166
The latter is the same as calling [`date.getTime()`][mdn-date-get-time].
Copy file name to clipboardExpand all lines: exercises/concept/appointment-time/.docs/introduction.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -161,7 +161,7 @@ Greater than (`>`) and greater than or equals (`>=`) as well as less than (`<`)
161
161
This works because JavaScript will try to coerce the date to a primitive.
162
162
163
163
<!-- prettier-ignore -->
164
-
~~~@exercism/advanced
164
+
~~~exercism/advanced
165
165
When doing a comparison between two dates or date and a number, JavaScript calls [`[Symbol.toPrimitive]("number")`][mdn-to-primitive] which internally calls [`date.valueOf()`][mdn-date-value-of].
166
166
The latter is the same as calling [`date.getTime()`][mdn-date-get-time].
0 commit comments