Results 181 - 200 of 217

String.prototype[@@iterator]()

The [@@iterator]() method returns a new Iterator object that iterates over the code points of a String value, returning each code point as a String value.
ECMAScript6 Iterator JavaScript Method Prototype Reference String

String.prototype.codePointAt()

The codePointAt() method returns a non-negative integer that is the Unicode code point value.
ECMAScript6 JavaScript Method Prototype Reference String

String.prototype.normalize()

The normalize() method returns the Unicode Normalization Form of a given string (if the value isn't a string, it will be converted to one first).
ECMAScript6 JavaScript Method Prototype Reference String Unicode

String.prototype.repeat()

The repeat() method constructs and returns a new string which contains the specified number of copies of the string on which it was called, concatenated together.
ECMAScript6 JavaScript Method Prototype Reference String

String.prototype.startsWith()

The startsWith() method determines whether a string begins with the characters of another string, returning true or false as appropriate.
ECMAScript6 JavaScript Method Prototype Reference String

String.prototype.trim()

The trim() method removes whitespace from both ends of a string. Whitespace in this context is all the whitespace characters (space, tab, no-break space, etc.) and all the line terminator characters (LF, CR, etc.).
ECMAScript5 JavaScript Method Prototype Reference String

TypedArray.prototype.every()

The every() method tests whether all elements in the typed array pass the test implemented by the provided function. This method has the same algorithm as Array.prototype.every(). TypedArray is one of the typed array types here.
ECMAScript6 JavaScript Method Prototype TypedArray TypedArrays

TypedArray.prototype.fill()

The fill() method fills all the elements of a typed array from a start index to an end index with a static value. This method has the same algorithm as Array.prototype.fill(). TypedArray is one of the typed array types here.
ECMAScript6 JavaScript Method Prototype TypedArray TypedArrays

TypedArray.prototype.filter()

The filter() method creates a new typed array with all elements that pass the test implemented by the provided function. This method has the same algorithm as Array.prototype.filter(). TypedArray is one of the typed array types here.
ECMAScript6 JavaScript Method Prototype TypedArray TypedArrays

TypedArray.prototype.find()

The find() method returns a value in the typed array, if an element satisfies the provided testing function. Otherwise undefined is returned. TypedArray is one of the typed array types here.
ECMAScript6 JavaScript Method Prototype Reference TypedArray TypedArrays

TypedArray.prototype.findIndex()

The findIndex() method returns an index in the typed array, if an element in the typed array satisfies the provided testing function. Otherwise -1 is returned.
ECMAScript6 JavaScript Method Prototype Reference TypedArray TypedArrays

TypedArray.prototype.forEach()

The forEach() method executes a provided function once per array element. This method has the same algorithm as Array.prototype.forEach(). TypedArray is one of the typed array types here.
ECMAScript6 JavaScript Method Prototype Reference TypedArray TypedArrays

TypedArray.prototype.includes()

The includes() method determines whether a typed array includes a certain element, returning true or false as appropriate. This method has the same algorithm as Array.prototype.includes(). TypedArray is one of the typed array types here.
ECMAScript7 JavaScript Method Prototype TypedArray TypedArrays

TypedArray.prototype.indexOf()

The indexOf() method returns the first index at which a given element can be found in the typed array, or -1 if it is not present. This method has the same algorithm as Array.prototype.indexOf(). TypedArray is one of the typed array types here.
ECMAScript6 JavaScript Method Prototype TypedArray TypedArrays

TypedArray.prototype.join()

The join() method joins all elements of an array into a string. This method has the same algorithm as Array.prototype.join(). TypedArray is one of the typed array types here.
ECMAScript6 JavaScript Method Prototype TypedArray TypedArrays

TypedArray.prototype.lastIndexOf()

The lastIndexOf() method returns the last index at which a given element can be found in the typed array, or -1 if it is not present. The typed array is searched backwards, starting at fromIndex. This method has the same algorithm as Array.prototype.lastIndexOf(). TypedArray is one of the typed array types here.
ECMAScript6 JavaScript Method Prototype TypedArray TypedArrays

TypedArray.prototype.map()

The map() method creates a new typed array with the results of calling a provided function on every element in this typed array. This method has the same algorithm as Array.prototype.map(). TypedArray is one of the typed array types here.
ECMAScript6 JavaScript Method Prototype TypedArray TypedArrays

TypedArray.prototype.reverse()

The reverse() method reverses a typed array in place. The first typed array element becomes the last and the last becomes the first. This method has the same algorithm as Array.prototype.reverse(). TypedArray is one of the typed array types here.
ECMAScript6 JavaScript Method Prototype TypedArray TypedArrays

TypedArray.prototype.slice()

The slice() method returns a shallow copy of a portion of a typed array into a new typed array object. This method has the same algorithm as Array.prototype.slice(). TypedArray is one of the typed array types here.
ECMAScript6 JavaScript Method Prototype TypedArray TypedArrays

TypedArray.prototype.some()

The some() method tests whether some element in the typed array passes the test implemented by the provided function. This method has the same algorithm as Array.prototype.some(). TypedArray is one of the typed array types here.
ECMAScript6 JavaScript Method Prototype TypedArray TypedArrays