Returns the day of the month (1-31) for the specified date according to local time.
Returns the day of the month (1-31) for the specified date according to local time.
MDN
Returns the day of the week (0-6) for the specified date according to local time.
Returns the day of the week (0-6) for the specified date according to local time.
MDN
Returns the year (4 digits for 4-digit years) of the specified date according to local time.
Returns the year (4 digits for 4-digit years) of the specified date according to local time.
MDN
Returns the hour (0-23) in the specified date according to local time.
Returns the hour (0-23) in the specified date according to local time.
MDN
Returns the milliseconds (0-999) in the specified date according to local time.
Returns the milliseconds (0-999) in the specified date according to local time.
MDN
Returns the minutes (0-59) in the specified date according to local time.
Returns the minutes (0-59) in the specified date according to local time.
MDN
Returns the month (0-11) in the specified date according to local time.
Returns the month (0-11) in the specified date according to local time.
MDN
Returns the seconds (0-59) in the specified date according to local time.
Returns the seconds (0-59) in the specified date according to local time.
MDN
Returns the time-zone offset in minutes for the current locale.
Returns the time-zone offset in minutes for the current locale.
MDN
Returns the day (date) of the month (1-31) in the specified date according to universal time.
Returns the day (date) of the month (1-31) in the specified date according to universal time.
MDN
Returns the day of the week (0-6) in the specified date according to universal time.
Returns the day of the week (0-6) in the specified date according to universal time. MDN
Returns the year (4 digits for 4-digit years) in the specified date according to universal time.
Returns the year (4 digits for 4-digit years) in the specified date according to universal time.
MDN
Returns the hours (0-23) in the specified date according to universal time.
Returns the hours (0-23) in the specified date according to universal time.
MDN
Returns the milliseconds (0-999) in the specified date according to universal time.
Returns the milliseconds (0-999) in the specified date according to universal time.
MDN
Returns the minutes (0-59) in the specified date according to universal time.
Returns the minutes (0-59) in the specified date according to universal time.
MDN
Returns the month (0-11) in the specified date according to universal time.
Returns the month (0-11) in the specified date according to universal time.
MDN
Returns the seconds (0-59) in the specified date according to universal time.
Returns the seconds (0-59) in the specified date according to universal time.
MDN
Tests whether this object has the specified property as a direct property.
Tests whether this object has the specified property as a direct property.
Unlike js.Object.hasProperty, this method does not check down the object's prototype chain.
MDN
Tests whether this object is in the prototype chain of another object.
Tests whether this object is in the prototype chain of another object.
Tests whether the specified property in an object can be enumerated by a call to js.Object.properties, with the exception of properties inherited through the prototype chain.
Tests whether the specified property in an object can be enumerated by a call to js.Object.properties, with the exception of properties inherited through the prototype chain. If the object does not have the specified property, this method returns false.
MDN
Creates a JavaScript Date instance that represents a single moment in time. Date objects are based on a time value that is the number of milliseconds since 1 January, 1970 UTC.
MDN