Completion requirements
This article describes the different methods for obtaining dates in various formats. The Date
object in JavaScript returns a number representing milliseconds since midnight on January 1, 1970. Time is presented in Coordinated Universal Time (UTC) and isn't converted to time zones. When using the getDay()
function, it uses local time from the computer. However, when using getUTCDay()
, it returns UTC day instead of local time. The Date object is very useful when we need a timestamp or something similar.
Constructor
Date()
-
When called as a constructor, returns a new
Date
object. When called as a function, returns a string representation of the current date and time.