Fix comma usage

This commit is contained in:
caspringer 2018-12-05 08:49:44 -05:00 committed by GitHub
parent ad8ab1d55f
commit 337c6deb7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -108,7 +108,7 @@ alert( date.getHours() );
alert( date.getUTCHours() ); 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) [getTime()](mdn:js/Date/getTime)
: Returns the timestamp for the date -- a number of milliseconds passed from the January 1st of 1970 UTC+0. : Returns the timestamp for the date -- a number of milliseconds passed from the January 1st of 1970 UTC+0.