Results 201 - 220 of 296

Array.prototype.keys()

The keys() method returns a new Array Iterator that contains the keys for each index in the array.
Array ECMAScript6 Iterator JavaScript Method Prototype

Array.prototype.lastIndexOf()

The lastIndexOf() method returns the last index at which a given element can be found in the array, or -1 if it is not present. The array is searched backwards, starting at fromIndex.
Array ECMAScript5 JavaScript Method polyfill Prototype

Array.prototype.map()

The map() method creates a new array with the results of calling a provided function on every element in this array.
Array ECMAScript5 JavaScript Method polyfill Prototype

Array.prototype.reduceRight()

The reduceRight() method applies a function against an accumulator and each value of the array (from right-to-left) has to reduce it to a single value.
Array ECMAScript5 JavaScript Method polyfill Prototype

Array.prototype.some()

The some() method tests whether some element in the array passes the test implemented by the provided function.
Array ECMAScript5 JavaScript Method Prototype Reference

Array.prototype.values()

The values() method returns a new Array Iterator object that contains the values for each index in the array.
Array ECMAScript6 Iterator JavaScript Method Prototype

Date.prototype.getTime()

The getTime() method returns the numeric value corresponding to the time for the specified date according to universal time.
Date JavaScript Method Prototype Reference Référence

Date.prototype.getYear()

The getYear() method returns the year in the specified date according to local time. Because getYear() does not return full years ("year 2000 problem"), it is no longer used and has been replaced by the getFullYear() method.
Date Deprecated JavaScript Method Prototype Reference

Date.prototype.setYear()

The setYear() method sets the year for a specified date according to local time. Because setYear() does not set full years ("year 2000 problem"), it is no longer used and has been replaced by the setFullYear() method.
Date Deprecated JavaScript Method Prototype Reference

Date.prototype.toGMTString()

The toGMTString() method converts a date to a string, using Internet Greenwich Mean Time (GMT) conventions. The exact format of the value returned by toGMTString() varies according to the platform and browser, in general it should represent a human readable date string.
Date Deprecated JavaScript Method Prototype Reference

Date.prototype.toISOString()

The toISOString() method returns a string in simplified extended ISO format (ISO 8601), which is always 24 or 27 characters long (YYYY-MM-DDTHH:mm:ss.sssZ or ±YYYYYY-MM-DDTHH:mm:ss.sssZ, respectively). The timezone is always zero UTC offset, as denoted by the suffix "Z".
Date JavaScript Method polyfill Prototype Reference

Date.prototype.toLocaleDateString()

The toLocaleDateString() method returns a string with a language sensitive representation of the date portion of this date. The new locales and options arguments let applications specify the language whose formatting conventions should be used and allow to customize the behavior of the function. In older implementations, which ignore the locales and options arguments, the locale used and the form of the string returned are entirely implementation dependent.
Date Internationalization JavaScript Method Prototype Reference

Date.prototype.toLocaleString()

The toLocaleString() method returns a string with a language sensitive representation of this date. The new locales and options arguments let applications specify the language whose formatting conventions should be used and customize the behavior of the function. In older implementations, which ignore the locales and options arguments, the locale used and the form of the string returned are entirely implementation dependent.
Date Internationalization JavaScript Method Prototype Reference

Date.prototype.toLocaleTimeString()

The toLocaleTimeString() method returns a string with a language sensitive representation of the time portion of this date. The new locales and options arguments let applications specify the language whose formatting conventions should be used and customize the behavior of the function. In older implementations, which ignore the locales and options arguments, the locale used and the form of the string returned are entirely implementation dependent.
Date Internationalization JavaScript Method Prototype Reference

Intl.DateTimeFormat.prototype.formatToParts()

The Intl.DateTimeFormat.prototype.formatToParts() method allows locale-aware formatting of strings produced by DateTimeFormat formatters.
DateTimeFormat Internationalization Intl JavaScript Method Prototype

Generator.prototype.next()

The next() method returns an object with two properties done and value. You can also provide a parameter to the next method to send a value to the generator.
ECMAScript6 Generator JavaScript Method Prototype Reference

Generator.prototype.return()

The return() method returns the given value and finishes the generator.
ECMAScript6 Generator JavaScript Method Prototype Reference

Generator.prototype.throw()

The throw() method resumes the execution of a generator by throwing an error into it and returns an object with two properties done and value.
ECMAScript6 Generator JavaScript Method Prototype Reference

GeneratorFunction.prototype

The GeneratorFunction.prototype property represents the GeneratorFunction prototype object.
ECMAScript6 GeneratorFunction Iterator JavaScript Property Prototype Reference

Map.prototype[@@iterator]()

The initial value of the @@iterator property is the same function object as the initial value of the entries property.
ECMAScript6 Iterator JavaScript Map Method Prototype Reference