Results 101 - 120 of 296

Date.prototype.setUTCMinutes()

The setUTCMinutes() method sets the minutes for a specified date according to universal time.
Date JavaScript Method Prototype Reference

Date.prototype.setUTCMonth()

The setUTCMonth() method sets the month for a specified date according to universal time.
Date JavaScript Method Prototype Reference

Date.prototype.setUTCSeconds()

The setUTCSeconds() method sets the seconds for a specified date according to universal time.
Date JavaScript Method Prototype Reference

Date.prototype.toDateString()

The toDateString() method returns the date portion of a Date object in human readable form in American English.
Date JavaScript Method Prototype Reference

Date.prototype.toJSON()

The toJSON() method returns a string representation of the Date object.
Date JavaScript Method Prototype Reference

Date.prototype.toLocaleFormat()

The non-standard toLocaleFormat() method converts a date to a string using the specified formatting. Intl.DateTimeFormat is an alternative to format dates in a standards-compliant way. See also the newer version of Date.prototype.toLocaleDateString().
Date JavaScript Method Prototype Reference

Date.prototype.toSource()

The toSource() method returns a string representing the source code of the object.
Date JavaScript Method Prototype Reference

Date.prototype.toString()

The toString() method returns a string representing the specified Date object.
Date JavaScript Method Prototype Reference

Date.prototype.toTimeString()

The toTimeString() method returns the time portion of a Date object in human readable form in American English.
Date JavaScript Method Prototype Reference

Date.prototype.toUTCString()

The toUTCString() method converts a date to a string, using the UTC time zone.
Date JavaScript Method Prototype Reference

Date.prototype.valueOf()

The valueOf() method returns the primitive value of a Date object.
Date JavaScript Method Prototype Reference

Intl.DateTimeFormat.prototype.format

The Intl.DateTimeFormat.prototype.format property returns a getter function that formats a date according to the locale and formatting options of this Intl.DateTimeFormat object.
DateTimeFormat Internationalization JavaScript Property Prototype

Intl.DateTimeFormat.prototype

The Intl.DateTimeFormat.prototype property represents the prototype object for the Intl.DateTimeFormat constructor.
DateTimeFormat Internationalization JavaScript Property Prototype

Intl.DateTimeFormat.prototype.resolvedOptions()

The Intl.DateTimeFormat.prototype.resolvedOptions() method returns a new object with properties reflecting the locale and date and time formatting options computed during initialization of this DateTimeFormat object.
DateTimeFormat Internationalization JavaScript Method Prototype

Intl.DateTimeFormat.supportedLocalesOf()

The Intl.DateTimeFormat.supportedLocalesOf() method returns an array containing those of the provided locales that are supported in date and time formatting without having to fall back to the runtime's default locale.
DateTimeFormat Internationalization JavaScript Method Prototype

Error.prototype.lineNumber

The lineNumber property contains the line number in the file that raised this error.
Error JavaScript Property Prototype Reference

Error.prototype.stack

The non-standard stack property of Error objects offer a trace of which functions were called, in what order, from which line and file, and with what arguments. The stack string proceeds from the most recent calls to earlier ones, leading back to the original global scope call.
Error JavaScript Property Prototype Reference

Map.prototype.clear()

The clear() method removes all elements from a Map object.
ECMAScript6 JavaScript Map Method Prototype

Map.prototype.delete()

The delete() method removes the specified element from a Map object.
ECMAScript6 JavaScript Map Method Prototype

Map.prototype.forEach()

The forEach() method executes a provided function once per each key/value pair in the Map object, in insertion order.
ECMAScript6 JavaScript Map Method Prototype