Results 261 - 280 of 296

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.reduce()

The reduce() method applies a function against an accumulator and each value of the typed array (from left-to-right) has to reduce it to a single value. This method has the same algorithm as Array.prototype.reduce(). TypedArray is one of the typed array types here.
JavaScript Method Prototype Reference TypedArray TypedArrays

TypedArray.prototype.reduceRight()

The reduceRight() method applies a function against an accumulator and each value of the typed array (from right-to-left) has to reduce it to a single value. This method has the same algorithm as Array.prototype.reduceRight(). TypedArray is one of the typed array types here.
JavaScript Method Prototype Reference 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

TypedArray.prototype.sort()

The sort() method sorts the elements of a typed array in place and returns the typed array. This method has the same algorithm as Array.prototype.sort(). TypedArray is one of the typed array types here.
ECMAScript6 JavaScript Method Prototype TypedArray TypedArrays

TypedArray.prototype.values()

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

RegExp.prototype.compile()

The deprecated compile() method is used to (re-)compile a regular expression during execution of a script. It is basically the same as the RegExp constructor.
Deprecated JavaScript Method Prototype Reference RegExp Regular Expressions

RegExp.prototype.flags

The flags property returns a string consisting of the flags of the current regular expression object.
ECMAScript6 JavaScript Property Prototype Reference RegExp Regular Expressions

RegExp.prototype.sticky

The sticky property reflects whether or not the search is sticky (searches in strings only from the index indicated by the lastIndex property of this regular expression). sticky is a read-only property of an individual regular expression object.
ECMAScript6 JavaScript Property Prototype Reference RegExp Regular Expressions

RegExp.prototype.unicode

The unicode property indicates whether or not the "u" flag is used with a regular expression. unicode is a read-only property of an individual regular expression instance.
ECMAScript6 JavaScript Property Prototype Reference RegExp Regular Expressions