From 337c6deb7a45c4d49b2278d0f97e1e34dc2b4cda Mon Sep 17 00:00:00 2001 From: caspringer Date: Wed, 5 Dec 2018 08:49:44 -0500 Subject: [PATCH] Fix comma usage --- 1-js/05-data-types/10-date/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/10-date/article.md b/1-js/05-data-types/10-date/article.md index 00390812f3..13e9dcd0c8 100644 --- a/1-js/05-data-types/10-date/article.md +++ b/1-js/05-data-types/10-date/article.md @@ -108,7 +108,7 @@ alert( date.getHours() ); alert( date.getUTCHours() ); ``` -Besides the given methods, there are two special ones, that do not have a UTC-variant: +Besides the given methods, there are two special ones that do not have a UTC-variant: [getTime()](mdn:js/Date/getTime) : Returns the timestamp for the date -- a number of milliseconds passed from the January 1st of 1970 UTC+0.