JavaScript – Date setUTCSeconds() Method
The Date setUTCSeconds() method sets the seconds (0 to 59) of a Date object, according to UTC, and can also set the milliseconds.
The Date setUTCSeconds() method sets the seconds (0 to 59) of a Date object, according to UTC, and can also set the milliseconds.
The Date toDateString() method returns the date (not the time) of a Date object as a string.
The Date toISOString() method returns a Date object as a string, using the ISO standard format: YYYY-MM-DDTHH:mm:ss.sssZ.
The Date toJSON() method returns a Date object as a string, formatted as a JSON date, using the format: YYYY-MM-DDTHH:mm:ss.sssZ.
The Date toLocaleDateString() method returns the date (not the time) of a Date object as a string, using locale conventions.
The Date toLocaleString() method returns a date and time as a string, using locale settings.
The Date toLocaleTimeString() method returns the time portion of a Date object as a string, using locale conventions.
The Date toTimeString() method returns the time portion of a Date object as a string.
The Date toUTCString() method returns a Date object as a string, according to UTC.
The Date.UTC() method returns the number of milliseconds between a specified date and midnight of January 1, 1970, according to UTC.
The Date valueOf() method returns the primitive value of a Date object as the number of millisecond since midnight January 1, 1970 UTC.
The attributes getNamedItem() method returns an attribute node from a NamedNodeMap object.
The attributes item() method returns an attribute, by index, from a NamedNodeMap.
The attributes.length property returns the number of nodes in a NamedNodeMap.
The Attributes name property returns the name of an attribute.
The attributes removeNamedItem() method removes a node, by name, in a NamedNodeMap.
The attributes rsetNamedItem() method adds an attribute node to a NamedNodeMap. If the attribute node already exists, it will be replaced.
The Attributes specified property returns true if an attribute is specified. Otherwise it returns an error.
The Attributes value property returns the value of an attribute.