Results 701 - 720 of 885

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

Function.prototype.bind()

The bind() method creates a new function that, when called, has its this keyword set to the provided value, with a given sequence of arguments preceding any provided when the new function is called.
ECMAScript5 ECMAScript6 Function JavaScript Method polyfill

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

The GeneratorFunction constructor creates a new generator function object. In JavaScript every generator function is actually a GeneratorFunction object.
Constructor ECMAScript6 GeneratorFunction Iterator JavaScript Reference

GeneratorFunction.prototype

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

Int8Array

The Int8Array typed array represents an array of twos-complement 8-bit signed integers. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).
Constructor Int8Array JavaScript TypedArray TypedArrays

JSON

The JSON object contains methods for parsing JavaScript Object Notation (JSON) and converting values to JSON. It can't be called or constructed, and aside from its two method properties it has no interesting functionality of its own.
JavaScript JSON Object polyfill Reference Référence

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

Map.prototype[@@toStringTag]

The Map[@@toStringTag] property has an initial value of "Map".
ECMAScript6 JavaScript Map Property Prototype Reference

Map.prototype.entries()

The entries() method returns a new Iterator object that contains the [key, value] pairs for each element in the Map object in insertion order.
ECMAScript6 Iterator JavaScript Map Method Prototype

Map.prototype.keys()

The keys() method returns a new Iterator object that contains the keys for each element in the Map object in insertion order.
ECMAScript6 Iterator JavaScript Map Method Prototype

Map.prototype.values()

The values() method returns a new Iterator object that contains the values for each element in the Map object in insertion order.
ECMAScript6 Iterator JavaScript Map Method Prototype

Object.assign()

The Object.assign() method is used to copy the values of all enumerable own properties from one or more source objects to a target object. It will return the target object.
ECMAScript6 JavaScript Method Object polyfill Reference

Object.create()

The Object.create() method creates a new object with the specified prototype object and properties.
ECMAScript5 JavaScript Method Object polyfill Reference

Object.prototype.__proto__

The __proto__ property of Object.prototype is an accessor property (a getter function and a setter function) that exposes the internal [[Prototype]] (either an object or null) of the object through which it is accessed.
Deprecated JavaScript Object Property Prototype Reference

RegExp

The RegExp constructor creates a regular expression object for matching text with a pattern.
Constructor JavaScript Reference RegExp Regular Expressions