Results 741 - 760 of 885

SharedArrayBuffer.prototype

The SharedArrayBuffer.prototype property represents the prototype for the SharedArrayBuffer object.
Experimental JavaScript Property Shared Memory SharedArrayBuffer TypedArrays

SIMD.%type%.prototype.toSource()

The non-standard SIMD.%type%.toSource() method returns a string representing the source code of the object.
JavaScript Method Non-standard Prototype SIMD

StopIteration

The StopIteration object is used to tell the end of the iteration in the legacy iterator protocol.
Deprecated JavaScript Legacy Iterator Reference StopIteration

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

The localeCompare() method returns a number indicating whether a reference string comes before or after or is the same as the given string in sort order.
Internationalization JavaScript Method Prototype Reference String

String.prototype.match()

The match() method retrieves the matches when matching a string against a regular expression.
JavaScript Method Prototype Reference Regular Expressions 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.quote()

The non-standard quote() method returns a copy of the string, replacing various special characters in the string with their escape sequences and wrapping the result in double-quotes (").
JavaScript Method Obsolete Prototype Reference String

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

The replace() method returns a new string with some or all matches of a pattern replaced by a replacement. The pattern can be a string or a RegExp, and the replacement can be a string or a function to be called for each match.
Expressions JavaScript Method Prototype Reference Regular String

String.prototype.search()

The search() method executes a search for a match between a regular expression and this String object.
JavaScript Method Prototype Reference Regular Expressions String

String.prototype.split()

The split() method splits a String object into an array of strings by separating the string into substrings.
JavaScript Method Prototype Reference Regular Expressions 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.toLocaleLowerCase()

The toLocaleLowerCase() method returns the calling string value converted to lower case, according to any locale-specific case mappings.
Internationalization JavaScript Method Prototype Reference String

String.prototype.toLocaleUpperCase()

The toLocaleUpperCase() method returns the calling string value converted to upper case, according to any locale-specific case mappings.
Internationalization JavaScript Method Prototype Reference String

String.prototype.toSource()

The toSource() method returns a string representing the source code of the object.
JavaScript Method Non-standard 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[@@iterator]()

The initial value of the @@iterator property is the same function object as the initial value of the values property.
Iterator JavaScript Method Prototype Reference TypedArray TypedArrays

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