This article entails a listing of all JavaScript methods documented on MDN sorted alphabetically.
Found 438 pages with the tag "Method":
A
-  
                abs: TheMath.abs()function returns the absolute value of a number, that is
-  
                 
                abs: The staticSIMD.%type%.abs()method returns a new SIMD data type with absolute values. This operation exists only on floating point SIMD types.
-  
                acos: TheMath.acos()function returns the arccosine (in radians) of a number, that is
-  
                acosh: TheMath.acosh()function returns the hyperbolic arc-cosine of a number, that is
-  
                 
                add: The staticAtomics.add()method adds a given value at a given position in the array and returns the old value at that position. This atomic operation guarantees that no other write happens until the modified value is written back.
-  
                add: Theadd()method appends a new object to the end of aWeakSetobject.
-  
                 
                add: The staticSIMD.%type%.add()method returns a new instance with the lane values added (a + b).
-  
                add: Theadd()method appends a new element with a specifiedvalueto the end of aSetobject.
-  
                 
                addSaturate: The staticSIMD.%type%.addSaturate()method returns a new instance with the lane values added (a + b) and saturating behavior on overflow.
-  
                all: ThePromise.all(iterable)method returns a promise that resolves when all of the promises in the iterable argument have resolved, or rejects with the reason of the first passed promise that rejects.
-  
                 
                allTrue: The staticSIMD.%BooleanType%.allTrue()method returns aBooleanindicating whether or not all lanes hold atruevalue.
-  
                anchor: Theanchor()method creates an<a>HTML anchor element that is used as a hypertext target.
-  
                 
                and: The staticSIMD.%type%.and()method returns a new instance with the logical AND of the lane values (a & b). This operation exists only on integer and boolean SIMD types.
-  
                 
                and: The staticAtomics.and()method computes a bitwise AND with a given value at a given position in the array, and returns the old value at that position. This atomic operation guarantees that no other write happens until the modified value is written back.
-  
                apply: Theapply()method calls a function with a giventhisvalue andargumentsprovided as an array (or an array-like object).
-  
                apply: Thehandler.apply()method is a trap for a function call.
-  
                apply: The staticReflect.apply()method calls a target function with arguments as specified.
-  
                asin: TheMath.asin()function returns the arcsine (in radians) of a number, that is
-  
                asinh: TheMath.asinh()function returns the hyperbolic arcsine of a number, that is
-  
                assign: TheObject.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.
-  
                atan: TheMath.atan()function returns the arctangent (in radians) of a number, that is
-  
                atan2: TheMath.atan2()function returns the arctangent of the quotient of its arguments.
-  
                atanh: TheMath.atanh()function returns the hyperbolic arctangent of a number, that is
B
-  
                  
                big: Thebig()method creates a<big>HTML element that causes a string to be displayed in a big font.
-  
                bind: Thebind()method creates a new function that, when called, has itsthiskeyword set to the provided value, with a given sequence of arguments preceding any provided when the new function is called.
-  
                  
                blink: Theblink()method creates a<blink>HTML element that causes a string to blink.
-  
                  
                bold: Thebold()method creates a<b>HTML element that causes a string to be displayed as bold.
C
-  
                call: Thecall()method calls a function with a giventhisvalue and arguments provided individually.
-  
                catch: The catch() method returns aPromiseand deals with rejected cases only. It behaves the same as callingPromise.prototype.then(undefined, onRejected).
-  
                cbrt: TheMath.cbrt()function returns the cube root of a number, that is
-  
                ceil: TheMath.ceil()function returns the smallest integer greater than or equal to a given number.
-  
                charAt: ThecharAt()method returns the specified character from a string.
-  
                charCodeAt: ThecharCodeAt()method returns an integer between 0 and 65535 representing the UTF-16 code unit at the given index (the UTF-16 code unit matches the Unicode code point for code points representable in a single UTF-16 code unit, but might also be the first code unit of a surrogate pair for code points not representable in a single UTF-16 code unit, e.g. Unicode code points > 0x10000). If you want the entire code point value, usecodePointAt().
-  
                 
                check: The staticSIMD.%type%.check()method returns a SIMD data type if the parameter is a valid SIMD data type and the same as%type%. Otherwise, aTypeErroris thrown.
-  
                 
                clear: Theclear()method used to remove all elements from aWeakMapobject, but is no longer part of ECMAScript and its implementations.
-  
                 
                clear: Theclear()method used to remove all elements from aWeakSetobject, but is no longer part of ECMAScript and its implementations.
-  
                clear: Theclear()method removes all elements from aMapobject.
-  
                clear: Theclear()method removes all elements from aSetobject.
-  
                clz32: TheMath.clz32()function returns the number of leading zero bits in the 32-bit binary representation of a number.
-  
                codePointAt: ThecodePointAt()method returns a non-negative integer that is the Unicode code point value.
-  
                 
                compareExchange: The staticAtomics.compareExchange()method exchanges a given replacement value at a given position in the array, and returns the old value at that position, if a given expected value equals the old value. This atomic operation guarantees that no other write happens until the modified value is written back.
-  
                  
                compile: The deprecatedcompile()method is used to (re-)compile a regular expression during execution of a script. It is basically the same as theRegExpconstructor.
-  
                concat: Theconcat()method combines the text of one or more strings and returns a new string.
-  
                concat: Theconcat()method is used to merge two or more arrays. This method does not change the existing arrays, but instead returns a new array.
-  
                construct: The staticReflect.construct()method acts like thenewoperator as a function. It is equivalent to callingnew target(...args).
-  
                construct: Thehandler.construct()method is a trap for thenewoperator.
-  
                copyWithin: ThecopyWithin()method shallow copies part of an array to another location in the same array and returns it, without modifying its size.
-  
                copyWithin: ThecopyWithin()method copies the sequence of array elements within the array to the position starting attarget. The copy is taken from the index positions of the second and third argumentsstartandend. Theendargument is optional and defaults to the length of the array. This method has the same algorithm asArray.prototype.copyWithin. TypedArray is one of the typed array types here.
-  
                cos: TheMath.cos()function returns the cosine of a number.
-  
                cosh: TheMath.cosh()function returns the hyperbolic cosine of a number, that can be expressed using the constant e:
-  
                create: TheObject.create()method creates a new object with the specified prototype object and properties.
D
-  
                defineProperties: TheObject.defineProperties()method defines new or modifies existing properties directly on an object, returning the object.
-  
                defineProperty: The staticReflect.defineProperty()method is likeObject.defineProperty()but returns aBoolean.
-  
                defineProperty: TheObject.defineProperty()method defines a new property directly on an object, or modifies an existing property on an object, and returns the object.
-  
                defineProperty: Thehandler.defineProperty()method is a trap forObject.defineProperty().
-  
                delete: Thedelete()method removes the specified element from aWeakMapobject.
-  
                delete: Thedelete()method removes the specified element from aMapobject.
-  
                delete: Thedelete()method removes the specified element from aSetobject.
-  
                delete: Thedelete()method removes the specified element from aWeakSetobject.
-  
                deleteProperty: The staticReflect.deleteProperty()method allows to delete properties. It is like thedeleteoperator as a function.
-  
                deleteProperty: Thehandler.deleteProperty()method is a trap for thedeleteoperator.
-  
                 
                div: The staticSIMD.%type%.div()method returns a new instance with the lane values divided (a / b). This function is defined only on floating point SIMD types.
E
-  
                endsWith: TheendsWith()method determines whether a string ends with the characters of another string, returningtrueorfalseas appropriate.
-  
                entries: Theentries()method returns a newArray Iteratorobject that contains the key/value pairs for each index in the array.
-  
                entries: Theentries()method returns a newArray Iteratorobject that contains the key/value pairs for each index in the array.
-  
                entries: Theentries()method returns a new Iterator object that contains the[key, value]pairs for each element in theMapobject in insertion order.
-  
                entries: Theentries()method returns a newIteratorobject that contains an array of[value, value]for each element in theSetobject, in insertion order. ForSetobjects there is nokeylike inMapobjects. However, to keep the API similar to theMapobject, each entry has the same value for its key and value here, so that an array[value, value]is returned.
-  
                 
                entries: TheObject.entries()method returns an array of a given object's own enumerable property[key, value]pairs, in the same order as that provided by afor...inloop (the difference being that a for-in loop enumerates properties in the prototype chain as well).
-  
                 
                enumerate: Thehandler.enumerate()method used to be a trap forfor...instatements, but has been removed from the ECMAScript standard in edition 7 and is deprecated in browsers.
-  
                 
                enumerate: The staticReflect.enumerate()method used to return an iterator with the enumerable own and inherited properties of the target object, but has been removed from the ECMAScript standard in edition 7 and is deprecated in browsers.
-  
                 
                equal: The staticSIMD.%type%.equal()method returns a selection mask with values depending on a strict equality comparison (a === b) in each lane.
-  
                 
                eval: TheObject.eval()method used to evaluate a string of JavaScript code in the context of an object, however, this method has been removed.
-  
                every: Theevery()method tests whether all elements in the array pass the test implemented by the provided function.
-  
                every: Theevery()method tests whether all elements in the typed array pass the test implemented by the provided function. This method has the same algorithm asArray.prototype.every(). TypedArray is one of the typed array types here.
-  
                 
                exchange: The staticAtomics.exchange()method exchanges a given value at a given position in the array and returns the old value at that position. This atomic operation guarantees that no other write happens until the modified value is written back.
-  
                exec: Theexec()method executes a search for a match in a specified string. Returns a result array, ornull.
-  
                exp: TheMath.exp()function returnsex, wherexis the argument, andeis Euler's number (also known as Napier's constant), the base of the natural logarithms.
-  
                expm1: TheMath.expm1()function returnsex - 1, wherexis the argument, and e the base of the natural logarithms.
-  
                 
                extractLane: The staticSIMD.%type%.extractLane()method returns the value of a given lane.
F
-  
                fill: Thefill()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 asArray.prototype.fill(). TypedArray is one of the typed array types here.
-  
                fill: Thefill()method fills all the elements of an array from a start index to an end index with a static value.
-  
                filter: Thefilter()method creates a new array with all elements that pass the test implemented by the provided function.
-  
                filter: Thefilter()method creates a new typed array with all elements that pass the test implemented by the provided function. This method has the same algorithm asArray.prototype.filter(). TypedArray is one of the typed array types here.
-  
                find: Thefind()method returns a value in the typed array, if an element satisfies the provided testing function. Otherwiseundefinedis returned. TypedArray is one of the typed array types here.
-  
                find: Thefind()method returns a value of the first element in the array that satisfies the provided testing function. Otherwiseundefinedis returned.
-  
                findIndex: ThefindIndex()method returns an index of the first element in the array that satisfies the provided testing function. Otherwise -1 is returned.
-  
                findIndex: ThefindIndex()method returns an index in the typed array, if an element in the typed array satisfies the provided testing function. Otherwise -1 is returned.
-  
                  
                fixed: Thefixed()method creates a<tt>HTML element that causes a string to be displayed in fixed-pitch font.
-  
                floor: TheMath.floor()function returns the largest integer less than or equal to a given number.
-  
                  
                fontcolor: Thefontcolor()method creates a<font>HTML element that causes a string to be displayed in the specified font color.
-  
                  
                fontsize: Thefontsize()method creates a<font>HTML element that causes a string to be displayed in the specified font size.
-  
                for: TheSymbol.for(key)method searches for existing symbols in a runtime-wide symbol registry with the given key and returns it if found. Otherwise a new symbol gets created in the global symbol registry with this key.
-  
                forEach: TheforEach()method executes a provided function once per array element. This method has the same algorithm asArray.prototype.forEach(). TypedArray is one of the typed array types here.
-  
                forEach: TheforEach()method executes a provided function once per each value in theSetobject, in insertion order.
-  
                forEach: TheforEach()method executes a provided function once per each key/value pair in theMapobject, in insertion order.
-  
                forEach: TheforEach()method executes a provided function once per array element.
-  
                formatToParts: TheIntl.DateTimeFormat.prototype.formatToParts()method allows locale-aware formatting of strings produced byDateTimeFormatformatters.
-  
                freeze: TheObject.freeze()method freezes an object: that is, prevents new properties from being added to it; prevents existing properties from being removed; and prevents existing properties, or their enumerability, configurability, or writability, from being changed. In essence the object is made effectively immutable. The method returns the object being frozen.
-  
                from: TheArray.from()method creates a newArrayinstance from an array-like or iterable object.
-  
                from: TheTypedArray.from()method creates a new typed array from an array-like or iterable object. This method is nearly the same asArray.from().
-  
                fromCharCode: The staticString.fromCharCode()method returns a string created by using the specified sequence of Unicode values.
-  
                fromCodePoint: The staticString.fromCodePoint()method returns a string created by using the specified sequence of code points.
-  
                 
                fromFloat32x4: The staticSIMD.%type%.fromFloat32x4()method creates a new SIMD data type with a float conversion from a Float32x4.
-  
                 
                fromFloat32x4Bits: The staticSIMD.%type%.fromFloat32x4Bits()method creates a new SIMD data type with a bit-wise copy from a Float32x4.
-  
                 
                fromFloat64x2Bits: The staticSIMD.%type%.fromFloat64x2Bits()method creates a new SIMD data type with a bit-wise copy from a Float64x2.
-  
                 
                fromInt16x8Bits: The staticSIMD.%type%.fromInt16x8Bits()method creates a new SIMD data type with a bit-wise copy from an int16x8.
-  
                 
                fromInt32x4: The staticSIMD.%type%.fromInt32x4()method creates a new SIMD data type with a float conversion from an Int32x4.
-  
                 
                fromInt32x4Bits: The staticSIMD.%type%.fromInt32x4Bits()method creates a new SIMD data type with a bit-wise copy from an Int32x4.
-  
                 
                fromInt8x16Bits: The staticSIMD.%type%.fromInt8x16Bits()method creates a new SIMD data type with a bit-wise copy from an Int8x16.
-  
                 
                fromUint16x8Bits: The staticSIMD.%type%.fromUint16x8Bits()method creates a new SIMD data type with a bit-wise copy from a Uint16x8.
-  
                 
                fromUint32x4: The staticSIMD.%type%.fromUint32x4()method creates a new SIMD data type with a conversion from a Uint32x4.
-  
                 
                fromUint32x4Bits: The staticSIMD.%type%.fromUint32x4Bits()method creates a new SIMD data type with a bit-wise copy from a Uint32x4.
-  
                 
                fromUint8x16Bits: The staticSIMD.%type%.fromUint8x16Bits()method creates a new SIMD data type with a bit-wise copy from a Uint8x16.
-  
                fround: TheMath.fround()function returns the nearest single precision float representation of a number.
G
-  
                get: Theget()method returns a specified element from aWeakMapobject.
-  
                get: The staticReflect.get()method works like getting a property from an object (target[propertyKey]) as a function.
-  
                get: Thehandler.get()method is a trap for getting a property value.
-  
                get: Theget()method returns a specified element from aMapobject.
-  
                get Array[@@species]: TheArray[@@species]accessor property returns theArrayconstructor.
-  
                getCanonicalLocales: TheIntl.getCanonicalLocales()method returns an array containing the canonical locale names. Duplicates will be omitted and elements will be validated as structurally valid language tags.
-  
                getDate: ThegetDate()method returns the day of the month for the specified date according to local time.
-  
                getDay: ThegetDay()method returns the day of the week for the specified date according to local time, where 0 represents Sunday.
-  
                getFloat32: ThegetFloat32()method gets a signed 32-bit float (float) at the specified byte offset from the start of theDataView.
-  
                getFloat64: ThegetFloat64()method gets a signed 64-bit float (double) at the specified byte offset from the start of theDataView.
-  
                getFullYear: ThegetFullYear()method returns the year of the specified date according to local time.
-  
                getHours: ThegetHours()method returns the hour for the specified date, according to local time.
-  
                getInt16: ThegetInt16()method gets a signed 16-bit integer (short) at the specified byte offset from the start of theDataView.
-  
                getInt32: ThegetInt32()method gets a signed 32-bit integer (long) at the specified byte offset from the start of theDataView.
-  
                getInt8: ThegetInt8()method gets a signed 8-bit integer (byte) at the specified byte offset from the start of theDataView.
-  
                getMilliseconds: ThegetMilliseconds()method returns the milliseconds in the specified date according to local time.
-  
                getMinutes: ThegetMinutes()method returns the minutes in the specified date according to local time.
-  
                getMonth: ThegetMonth()method returns the month in the specified date according to local time, as a zero-based value (where zero indicates the first month of the year).
-  
                 
                getNotifier: TheObject.getNotifer()method was used to create an object that allows to synthetically trigger a change, but has been deprecated and removed in browsers.
-  
                getOwnPropertyDescriptor: TheObject.getOwnPropertyDescriptor()method returns a property descriptor for an own property (that is, one directly present on an object and not in the object's prototype chain) of a given object.
-  
                getOwnPropertyDescriptor: The staticReflect.getOwnPropertyDescriptor()method is similar toObject.getOwnPropertyDescriptor(). It returns a property descriptor of the given property if it exists on the object,undefinedotherwise.
-  
                getOwnPropertyDescriptor: Thehandler.getOwnPropertyDescriptor()method is a trap forObject.getOwnPropertyDescriptor().
-  
                getOwnPropertyDescriptors: TheObject.getOwnPropertyDescriptors()method returns all own property descriptors of a given object.
-  
                getOwnPropertyNames: TheObject.getOwnPropertyNames()method returns an array of all properties (enumerable or not) found directly upon a given object.
-  
                getOwnPropertySymbols: TheObject.getOwnPropertySymbols()method returns an array of all symbol properties found directly upon a given object.
-  
                getPrototypeOf: Thehandler.getPrototypeOf()method is a trap for the[[GetPrototypeOf]]internal method.
-  
                getPrototypeOf: TheObject.getPrototypeOf()method returns the prototype (i.e. the value of the internal[[Prototype]]property) of the specified object.
-  
                getPrototypeOf: The staticReflect.getPrototypeOf()method is the same method asObject.getPrototypeOf(). It returns the prototype (i.e. the value of the internal[[Prototype]]property) of the specified object.
-  
                getSeconds: ThegetSeconds()method returns the seconds in the specified date according to local time.
-  
                getTime: ThegetTime()method returns the numeric value corresponding to the time for the specified date according to universal time.
-  
                getTimezoneOffset: ThegetTimezoneOffset()method returns the time zone difference, in minutes, from current locale (host system settings) to UTC.
-  
                getUTCDate: ThegetUTCDate()method returns the day (date) of the month in the specified date according to universal time.
-  
                getUTCDay: ThegetUTCDay()method returns the day of the week in the specified date according to universal time, where 0 represents Sunday.
-  
                getUTCFullYear: ThegetUTCFullYear()method returns the year in the specified date according to universal time.
-  
                getUTCHours: ThegetUTCHours()method returns the hours in the specified date according to universal time.
-  
                getUTCMilliseconds: ThegetUTCMilliseconds()method returns the milliseconds in the specified date according to universal time.
-  
                getUTCMinutes: ThegetUTCMinutes()method returns the minutes in the specified date according to universal time.
-  
                getUTCMonth: ThegetUTCMonth()returns the month of the specified date according to universal time, as a zero-based value (where zero indicates the first month of the year).
-  
                getUTCSeconds: ThegetUTCSeconds()method returns the seconds in the specified date according to universal time.
-  
                getUint16: ThegetUint16()method gets an unsigned 16-bit integer (unsigned short) at the specified byte offset from the start of theDataView.
-  
                getUint32: ThegetUint32()method gets an unsigned 32-bit integer (unsigned long) at the specified byte offset from the start of theDataView.
-  
                getUint8: ThegetUint8()method gets an unsigned 8-bit integer (unsigned byte) at the specified byte offset from the start of theDataView.
-  
                  
                getYear: ThegetYear()method returns the year in the specified date according to local time. BecausegetYear()does not return full years ("year 2000 problem"), it is no longer used and has been replaced by thegetFullYear()method.
-  
                 
                greaterThan: The staticSIMD.%type%.greaterThan()method returns a selection mask with values depending on a greater-than comparison (a > b) in each lane.
-  
                 
                greaterThanOrEqual: The staticSIMD.%type%.greaterThanOrEqual()method returns a selection mask with values depending on a greater-than-or-equal comparison (a >= b) in each lane.
H
-  
                has: Thehas()method returns a boolean indicating whether an element with the specified key exists or not.
-  
                has: Thehandler.has()method is a trap for theinoperator.
-  
                has: The staticReflect.has()method works like theinoperator as a function.
-  
                has: Thehas()method returns a boolean indicating whether an element with the specified value exists in aSetobject or not.
-  
                has: Thehas()method returns a boolean indicating whether an element with the specified key exists in theWeakMapobject or not.
-  
                has: Thehas()method returns a boolean indicating whether an object exists in aWeakSetor not.
-  
                hasOwnProperty: ThehasOwnProperty()method returns a boolean indicating whether the object has the specified property.
-  
                hypot: TheMath.hypot()function returns the square root of the sum of squares of its arguments, that is
I
-  
                Indexed collections: This chapter introduces collections of data which are ordered by an index value. This includes arrays and array-like constructs such asArrayobjects andTypedArrayobjects.
-  
                imul: TheMath.imul()function returns the result of the C-like 32-bit multiplication of the two parameters.
-  
                includes: Theincludes()method determines whether an array includes a certain element, returningtrueorfalseas appropriate.
-  
                includes: Theincludes()method determines whether a typed array includes a certain element, returningtrueorfalseas appropriate. This method has the same algorithm asArray.prototype.includes(). TypedArray is one of the typed array types here.
-  
                includes: Theincludes()method determines whether one string may be found within another string, returningtrueorfalseas appropriate.
-  
                indexOf: TheindexOf()method returns the index within the callingStringobject of the first occurrence of the specified value, starting the search atfromIndex. Returns -1 if the value is not found.
-  
                indexOf: TheindexOf()method returns the first index at which a given element can be found in the array, or -1 if it is not present.
-  
                indexOf: TheindexOf()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 asArray.prototype.indexOf(). TypedArray is one of the typed array types here.
-  
                is: TheObject.is()method determines whether two values are the same value.
-  
                isArray: TheArray.isArray()determines whether the passed value is anArray.
-  
                isExtensible: The staticReflect.isExtensible()method determines if an object is extensible (whether it can have new properties added to it). It is similar toObject.isExtensible(), but with some differences.
-  
                isExtensible: Thehandler.isExtensible()method is a trap forObject.isExtensible().
-  
                isExtensible: TheObject.isExtensible()method determines if an object is extensible (whether it can have new properties added to it).
-  
                isFinite: TheNumber.isFinite()method determines whether the passed value is a finite number.
-  
                isFrozen: TheObject.isFrozen()determines if an object is frozen.
-  
                isGenerator: TheisGenerator()method determines whether or not a function is a generator.
-  
                isInteger: TheNumber.isInteger()method determines whether the passed value is an integer.
-  
                 
                isLockFree: The staticAtomics.isLockFree()method is used to determine whether to use locks or atomic operations. It returnstrue, if the given size is one of the BYTES_PER_ELEMENT property of integer TypedArray types.
-  
                isNaN: TheNumber.isNaN()method determines whether the passed value isNaN. It is a more robust version of the original, globalisNaN().
-  
                isPrototypeOf: TheisPrototypeOf()method tests for an object in another object's prototype chain.
-  
                isSafeInteger: Editorial review completed.
-  
                isSealed: TheObject.isSealed()method determines if an object is sealed.
-  
                isView: TheArrayBuffer.isView()method returnstrueifargis one of theArrayBufferviews, such as typed array objects or aDataView;falseotherwise.
-  
                  
                italics: Theitalics()method creates an<i>HTML element that causes a string to be italic.
J
-  
                join: Thejoin()method joins all elements of an array into a string.
-  
                join: Thejoin()method joins all elements of an array into a string. This method has the same algorithm asArray.prototype.join(). TypedArray is one of the typed array types here.
K
-  
                keyFor: TheSymbol.keyFor(sym)method retrieves a shared symbol key from the global symbol registry for the given symbol.
-  
                keys: Thekeys()method returns a newArray Iteratorthat contains the keys for each index in the array.
-  
                keys: Thekeys()method returns a newIteratorobject that contains the keys for each element in theMapobject in insertion order.
-  
                keys: TheObject.keys()method returns an array of a given object's own enumerable properties, in the same order as that provided by afor...inloop (the difference being that a for-in loop enumerates properties in the prototype chain as well).
-  
                keys: Thekeys()method returns a newArray Iteratorobject that contains the keys for each index in the array.
L
-  
                lastIndexOf: ThelastIndexOf()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 atfromIndex.
-  
                lastIndexOf: ThelastIndexOf()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 atfromIndex. This method has the same algorithm asArray.prototype.lastIndexOf(). TypedArray is one of the typed array types here.
-  
                lastIndexOf: ThelastIndexOf()method returns the index within the callingStringobject of the last occurrence of the specified value, searching backwards fromfromIndex. Returns -1 if the value is not found.
-  
                 
                lessThan: The staticSIMD.%type%.lessThan()method returns a selection mask with values depending on a less-than comparison (a < b) in each lane.
-  
                 
                lessThanOrEqual: The staticSIMD.%type%.lessThanOrEqual()method returns a selection mask with values depending on a less-than-or-equal comparison (a <= b) in each lane.
-  
                link: Thelink()method creates a string representing the code for an<a>HTML element to be used as a hypertext link to another URL.
-  
                 
                load: The staticAtomics.load()method returns a value at a given position in the array. This atomic operation guarantees that no other read happens until the modified value is read back.
-  
                 
                load: The staticSIMD.%type%.load()methods create a new SIMD data type with the lane values loaded from a typed array.
-  
                localeCompare: ThelocaleCompare()method returns a number indicating whether a reference string comes before or after or is the same as the given string in sort order.
-  
                log: TheMath.log()function returns the natural logarithm (basee) of a number, that is
-  
                log10: TheMath.log10()function returns the base 10 logarithm of a number, that is
-  
                log1p: TheMath.log1p()function returns the natural logarithm (basee) of 1 + a number, that is
-  
                log2: TheMath.log2()function returns the base 2 logarithm of a number, that is
M
-  
                map: Themap()method creates a new array with the results of calling a provided function on every element in this array.
-  
                map: Themap()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 asArray.prototype.map(). TypedArray is one of the typed array types here.
-  
                match: Thematch()method retrieves the matches when matching a string against a regular expression.
-  
                 
                max: The staticSIMD.%type%.max()method returns a new instance with the maximum lane values of two SIMD types (Math.max(a, b)).
-  
                max: TheMath.max()function returns the largest of zero or more numbers.
-  
                 
                maxNum: The staticSIMD.%type%.maxNum()method returns a new instance with the maximum lane values of two SIMD types (Math.max(a, b)) preferring numbers overNaN.
-  
                min: TheMath.min()function returns the smallest of zero or more numbers.
-  
                 
                min: The staticSIMD.%type%.min()method returns a new instance with the minimum lane values of two SIMD types (Math.min(a, b)).
-  
                 
                minNum: The staticSIMD.%type%.minNum()method returns a new instance with the minimum lane values of two SIMD types (Math.min(a, b)) preferring numbers overNaN.
-  
                 
                move: Themove()method used to copy the sequence of array elements within the array to the position starting attarget. However, this non-standard method has been replaced with the standardTypedArray.prototype.copyWithin()method. TypedArray is one of the typed array types here.
-  
                 
                mul: The staticSIMD.%type%.mul()method returns a new instance with the lane values multiplied (a * b).
N
-  
                 
                neg: The staticSIMD.%type%.mul()method returns a new instance with the lane values negated.
-  
                next: Thenext()method returns an object with two propertiesdoneandvalue. You can also provide a parameter to thenextmethod to send a value to the generator.
-  
                normalize: Thenormalize()method returns the Unicode Normalization Form of a given string (if the value isn't a string, it will be converted to one first).
-  
                 
                not: The staticSIMD.%type%.not()method returns a new instance with the bitwise logical NOT of the lane values (~a). This operation exists only on integer and boolean SIMD types.
-  
                 
                notEqual: The staticSIMD.%type%.notEqual()method returns a selection mask with values depending on an inequality comparison (a != b) in each lane.
-  
                now: TheDate.now()method returns the number of milliseconds elapsed since 1 January 1970 00:00:00 UTC.
O
-  
                 
                observe: TheArray.observe()method was used for asynchronously observing changes to Arrays, similar toObject.observe()for objects. It provided a stream of changes in order of occurrence. It's equivalent toObject.observe()invoked with the accept type list["add", "update", "delete", "splice"]. However, this API has been deprecated and removed from Browsers. You can use the more generalProxyobject instead.
-  
                 
                observe: TheObject.observe()method was used for asynchronously observing the changes to an object. It provided a stream of changes in the order in which they occur. However, this API has been deprecated and removed from browsers. You can use the more generalProxyobject instead.
-  
                of: TheArray.of()method creates a newArrayinstance with a variable number of arguments, regardless of number or type of the arguments.
-  
                of: TheTypedArray.of()method creates a new typed array with a variable number of arguments. This method is nearly the same asArray.of().
-  
                 
                or: The staticAtomics.or()method computes a bitwise OR with a given value at a given position in the array, and returns the old value at that position. This atomic operation guarantees that no other write happens until the modified value is written back.
-  
                 
                or: The staticSIMD.%type%.or()method returns a new instance with the logical OR of the lane values (a | b). This operation exists only on integer and boolean SIMD types.
-  
                ownKeys: Thehandler.ownKeys()method is a trap forObject.getOwnPropertyNames().
-  
                ownKeys: The staticReflect.ownKeys()method returns an array of thetargetobject's own property keys.
P
-  
                 
                padEnd: ThepadEnd()method pads the current string with a given string (possibly repeated) so that the resulting string reaches a given length. The padding is applied from the end (right) of the current string.
-  
                 
                padStart: ThepadStart()method pads the current string with a given string (eventually repeated) so that the resulting string reaches a given length. The pad is applied from the start (left) of the current string.
-  
                parse: TheDate.parse()method parses a string representation of a date, and returns the number of milliseconds since January 1, 1970, 00:00:00 UTC orNaNif the string is unrecognised or, in some cases, contains illegal date values (e.g. 2015-02-31).
-  
                parse: TheJSON.parse()method parses a JSON string, constructing the JavaScript value or object described by the string. An optional reviver function can be provided to perform a transformation on the resulting object before it is returned.
-  
                parse: bad parsing:SyntaxError
-  
                parseFloat: TheNumber.parseFloat()method parses a string argument and returns a floating point number. This method behaves identically to the global functionparseFloat()and is part of ECMAScript 6 (its purpose is modularization of globals).
-  
                parseInt: TheNumber.parseInt()method parses a string argument and returns an integer of the specified radix or base.
-  
                pop: Thepop()method removes the last element from an array and returns that element. This method changes the length of the array.
-  
                pow: TheMath.pow()function returns thebaseto theexponentpower, that is,baseexponent.
-  
                preventExtensions: The staticReflect.preventExtensions()method prevents new properties from ever being added to an object (i.e. prevents future extensions to the object). It is similar toObject.preventExtensions(), but with some differences.
-  
                preventExtensions: TheObject.preventExtensions()method prevents new properties from ever being added to an object (i.e. prevents future extensions to the object).
-  
                preventExtensions: Thehandler.preventExtensions()method is a trap forObject.preventExtensions().
-  
                propertyIsEnumerable: ThepropertyIsEnumerable()method returns a Boolean indicating whether the specified property is enumerable.
-  
                prototype[@@iterator]: The initial value of the@@iteratorproperty is the same function object as the initial value of thevaluesproperty.
-  
                prototype[@@iterator]: The initial value of the@@iteratorproperty is the same function object as the initial value of theentriesproperty.
-  
                prototype[@@iterator]: The[@@iterator]()method returns a newIteratorobject that iterates over the code points of a String value, returning each code point as a String value.
-  
                prototype[@@iterator]: The initial value of the@@iteratorproperty is the same function object as the initial value of thevalues()property.
-  
                prototype[@@iterator]: The initial value of the @@iterator property is the same function object as the initial value of thevaluesproperty.
-  
                prototype[@@match]: The[@@match]()method retrieves the matches when matching a string against a regular expression.
-  
                prototype[@@replace]: The[@@replace]()method replaces some or all matches of athispattern in a string by areplacement, and returns the result of the replacement as a new string. Thereplacementcan be a string or a function to be called for each match.
-  
                prototype[@@search]: The[@@search]()method executes a search for a match between athisregular expression and a string.
-  
                prototype[@@split]: The[@@split]()method splits aStringobject into an array of strings by separating the string into substrings.
-  
                prototype[@@toPrimitive]: The[@@toPrimitive]()method converts aDateobject to a primitive value.
-  
                prototype[@@toPrimitive]: The[@@toPrimitive]()method converts a Symbol object to a primitive value.
-  
                push: Thepush()method adds one or more elements to the end of an array and returns the new length of the array.
Q
-  
                 
                quote: The non-standardquote()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 (").
R
-  
                race: ThePromise.race(iterable)method returns a promise that resolves or rejects as soon as one of the promises in the iterable resolves or rejects, with the value or reason from that promise.
-  
                random: TheMath.random()function returns a floating-point, pseudo-random number in the range [0, 1)that is, from 0 (inclusive) up to but not including 1 (exclusive), which you can then scale to your desired range. The implementation selects the initial seed to the random number generation algorithm; it cannot be chosen or reset by the user.
-  
                raw: The staticString.raw()method is a tag function of template literals, similar to therprefix in Python or the@prefix in C# for string literals (yet there is a difference: see explanations in this issue). It's used to get the raw string form of template strings (that is, the original, uninterpreted text).
-  
                 
                reciprocalApproximation: The staticSIMD.%type%.reciprocalApproximation()method returns a new instance with an approximation of the reciprocal lane values (1 / x).
-  
                 
                reciprocalSqrtApproximation: The staticSIMD.%type%.reciprocalSqrtApproximation()method returns a new instance with an approximation of the reciprocal value (1 / x) of the square root (Math.sqrt()) of the lane values.
-  
                reduce: Thereduce()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 asArray.prototype.reduce(). TypedArray is one of the typed array types here.
-  
                reduce: Thereduce()method applies a function against an accumulator and each value of the array (from left-to-right) to reduce it to a single value.
-  
                reduceRight: ThereduceRight()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 asArray.prototype.reduceRight(). TypedArray is one of the typed array types here.
-  
                reduceRight: ThereduceRight()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.
-  
                reject: ThePromise.reject(reason)method returns aPromiseobject that is rejected with the given reason.
-  
                repeat: Therepeat()method constructs and returns a new string which contains the specified number of copies of the string on which it was called, concatenated together.
-  
                replace: Thereplace()method returns a new string with some or all matches of apatternreplaced by areplacement. Thepatterncan be a string or aRegExp, and thereplacementcan be a string or a function to be called for each match.
-  
                 
                replaceLane: The staticSIMD.%type%.replaceLane()method returns a new SIMD data type with the given lane value replaced.
-  
                resolve: ThePromise.resolve(value)method returns aPromiseobject that is resolved with the given value. If the value is a thenable (i.e. has a"then" method), the returned promise will "follow" that thenable, adopting its eventual state; otherwise the returned promise will be fulfilled with the value.
-  
                resolvedOptions: TheIntl.NumberFormat.prototype.resolvedOptions()method returns a new object with properties reflecting the locale and number formatting options computed during initialization of thisNumberFormatobject.
-  
                resolvedOptions: TheIntl.DateTimeFormat.prototype.resolvedOptions()method returns a new object with properties reflecting the locale and date and time formatting options computed during initialization of thisDateTimeFormatobject.
-  
                resolvedOptions: TheIntl.Collator.prototype.resolvedOptions()method returns a new object with properties reflecting the locale and collation options computed during initialization of thisCollatorobject.
-  
                return: Thereturn()method returns the given value and finishes the generator.
-  
                reverse: Thereverse()method reverses an array in place. The first array element becomes the last, and the last array element becomes the first.
-  
                reverse: Thereverse()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 asArray.prototype.reverse(). TypedArray is one of the typed array types here.
-  
                revocable: TheProxy.revocable()method is used to create a revocableProxyobject.
-  
                round: TheMath.round()function returns the value of a number rounded to the nearest integer.
S
-  
                seal: TheObject.seal()method seals an object, preventing new properties from being added to it and marking all existing properties as non-configurable. Values of present properties can still be changed as long as they are writable.
-  
                search: Thesearch()method executes a search for a match between a regular expression and thisStringobject.
-  
                 
                select: The staticSIMD.%type%.select()method creates a new integer SIMD data type with the lane values being a selection match from a selector mask.
-  
                set: Theset()method adds or updates an element with a specifiedkeyandvalueto aMapobject.
-  
                set: Theset()method stores multiple values in the typed array, reading input values from a specified array.
-  
                set: The staticReflect.set()method works like setting a property on an object.
-  
                set: Thehandler.set()method is a trap for setting a property value.
-  
                set: Theset()method adds a new element with a specifiedkeyandvalueto aWeakMapobject.
-  
                setDate: ThesetDate()method sets the day of theDateobject relative to the beginning of the currently set month.
-  
                setFloat32: ThesetFloat32()method stores a signed 32-bit float (float) value at the specified byte offset from the start of theDataView.
-  
                setFloat64: ThesetFloat64()method stores a signed 64-bit float (double) value at the specified byte offset from the start of theDataView.
-  
                setFullYear: ThesetFullYear()method sets the full year for a specified date according to local time. Returns new timestamp.
-  
                setHours: ThesetHours()method sets the hours for a specified date according to local time, and returns the number of milliseconds since 1 January 1970 00:00:00 UTC until the time represented by the updatedDateinstance.
-  
                setInt16: ThesetInt16()method stores a signed 16-bit integer (short) value at the specified byte offset from the start of theDataView.
-  
                setInt32: ThesetInt32()method stores a signed 32-bit integer (long) value at the specified byte offset from the start of theDataView.
-  
                setInt8: ThesetInt8()method stores a signed 8-bit integer (byte) value at the specified byte offset from the start of theDataView.
-  
                setMilliseconds: ThesetMilliseconds()method sets the milliseconds for a specified date according to local time.
-  
                setMinutes: ThesetMinutes()method sets the minutes for a specified date according to local time.
-  
                setMonth: ThesetMonth()method sets the month for a specified date according to the currently set year.
-  
                setPrototypeOf: TheObject.setPrototypeOf()method sets the prototype (i.e., the internal[[Prototype]]property) of a specified object to another object ornull.
-  
                setPrototypeOf: Thehandler.setPrototypeOf()method is a trap forObject.setPrototypeOf().
-  
                setPrototypeOf: The staticReflect.setPrototypeOf()method is the same method asObject.setPrototypeOf(). It sets the prototype (i.e., the internal[[Prototype]]property) of a specified object to another object or tonull.
-  
                setSeconds: ThesetSeconds()method sets the seconds for a specified date according to local time.
-  
                setTime: ThesetTime()method sets theDateobject to the time represented by a number of milliseconds since January 1, 1970, 00:00:00 UTC.
-  
                setUTCDate: ThesetUTCDate()method sets the day of the month for a specified date according to universal time.
-  
                setUTCFullYear: ThesetUTCFullYear()method sets the full year for a specified date according to universal time.
-  
                setUTCHours: ThesetUTCHours()method sets the hour for a specified date according to universal time, and returns the number of milliseconds since 1 January 1970 00:00:00 UTC until the time represented by the updatedDateinstance.
-  
                setUTCMilliseconds: ThesetUTCMilliseconds()method sets the milliseconds for a specified date according to universal time.
-  
                setUTCMinutes: ThesetUTCMinutes()method sets the minutes for a specified date according to universal time.
-  
                setUTCMonth: ThesetUTCMonth()method sets the month for a specified date according to universal time.
-  
                setUTCSeconds: ThesetUTCSeconds()method sets the seconds for a specified date according to universal time.
-  
                setUint16: ThesetUint16()method stores an unsigned 16-bit integer (unsigned short) value at the specified byte offset from the start of theDataView.
-  
                setUint32: ThesetUint32()method stores an unsigned 32-bit integer (unsigned long) value at the specified byte offset from the start of theDataView.
-  
                setUint8: ThesetUint8()method stores an unsigned 8-bit integer (byte) value at the specified byte offset from the start of theDataView.
-  
                  
                setYear: ThesetYear()method sets the year for a specified date according to local time. BecausesetYear()does not set full years ("year 2000 problem"), it is no longer used and has been replaced by thesetFullYear()method.
-  
                shift: Theshift()method removes the first element from an array and returns that element. This method changes the length of the array.
-  
                 
                shiftLeftByScalar: The staticSIMD.%type%.shiftLeftByScalar()method returns a new instance with the lane values shifted left by a given bit count (a << bits).
-  
                 
                shiftRightByScalar: The staticSIMD.%type%.shiftRightByScalar()method returns a new instance with the lane values shifted right. Depending on the type, these operations are used:
-  
                 
                shuffle: The staticSIMD.%type%.shuffle()method creates a new SIMD data type instance with the lane values shuffled.
-  
                sign: TheMath.sign()function returns the sign of a number, indicating whether the number is positive, negative or zero.
-  
                sin: TheMath.sin()function returns the sine of a number.
-  
                sinh: TheMath.sinh()function returns the hyperbolic sine of a number, that can be expressed using the constant e:
-  
                slice: Theslice()method returns a shallow copy of a portion of an array into a new array object selected frombegintoend(endnot included). The original array will not be modified.
-  
                slice: Theslice()method extracts a section of a string and returns a new string.
-  
                slice: Theslice()method returns a shallow copy of a portion of a typed array into a new typed array object. This method has the same algorithm asArray.prototype.slice(). TypedArray is one of the typed array types here.
-  
                slice: Theslice()method returns a newArrayBufferwhose contents are a copy of thisArrayBuffer's bytes frombegin, inclusive, up toend, exclusive.
-  
                  
                small: Thesmall()method creates a<small>HTML element that causes a string to be displayed in a small font.
-  
                some: Thesome()method tests whether some element in the array passes the test implemented by the provided function.
-  
                some: Thesome()method tests whether some element in the typed array passes the test implemented by the provided function. This method has the same algorithm asArray.prototype.some(). TypedArray is one of the typed array types here.
-  
                sort: Thesort()method sorts the elements of a typed array in place and returns the typed array. This method has the same algorithm asArray.prototype.sort(). TypedArray is one of the typed array types here.
-  
                sort: Thesort()method sorts the elements of an array in place and returns the array. The sort is not necessarily stable. The default sort order is according to string Unicode code points.
-  
                 
                splat: The staticSIMD.%type%.splat()method creates a new SIMD data type with all lanes set to a given value.
-  
                splice: Thesplice()method changes the content of an array by removing existing elements and/or adding new elements.
-  
                split: Thesplit()method splits aStringobject into an array of strings by separating the string into substrings.
-  
                 
                sqrt: The staticSIMD.%type%.sqrt()method returns a new instance with the square root of the lane values (see alsoMath.sqrt()for the same scalar function).
-  
                sqrt: TheMath.sqrt()function returns the square root of a number, that is
-  
                startsWith: ThestartsWith()method determines whether a string begins with the characters of another string, returningtrueorfalseas appropriate.
-  
                 
                store: The staticSIMD.%type%.store()methods store a SIMD data type into a typed array.
-  
                 
                store: The staticAtomics.store()method stores a given value at the given position in the array and returns that value. This atomic operation guarantees that no other write happens until the modified value is written back.
-  
                  
                strike: Thestrike()method creates a<strike>HTML element that causes a string to be displayed as struck-out text.
-  
                stringify: TheJSON.stringify()method converts a JavaScript value to a JSON string, optionally replacing values if a replacer function is specified, or optionally including only the specified properties if a replacer array is specified.
-  
                 
                sub: The staticSIMD.%type%.sub()method returns a new instance with the lane values subtracted (a - b).
-  
                  
                sub: Thesub()method creates a<sub>HTML element that causes a string to be displayed as subscript.
-  
                 
                sub: The staticAtomics.sub()method substracts a given value at a given position in the array and returns the old value at that position. This atomic operation guarantees that no other write happens until the modified value is written back.
-  
                 
                subSaturate: The staticSIMD.%type%.subSaturate()method returns a new instance with the lane values subtracted (a - b) and saturating behavior on overflow.
-  
                subarray: Thesubarray()method returns a new TypedArray on the sameArrayBufferstore and with the same element types as for this TypedArray object. Thebeginoffset is inclusive and theendoffset is exclusive. TypedArray is one of the typed array types.
-  
                substr: Technical review completed.
-  
                substring: Thesubstring()method returns a subset of astringbetween one index and another, or through the end of the string.
-  
                  
                sup: Thesup()method creates a<sup>HTML element that causes a string to be displayed as superscript.
-  
                supportedLocalesOf: TheIntl.NumberFormat.supportedLocalesOf()method returns an array containing those of the provided locales that are supported in number formatting without having to fall back to the runtime's default locale.
-  
                supportedLocalesOf: TheIntl.DateTimeFormat.supportedLocalesOf()method returns an array containing those of the provided locales that are supported in date and time formatting without having to fall back to the runtime's default locale.
-  
                supportedLocalesOf: TheIntl.Collator.supportedLocalesOf()method returns an array containing those of the provided locales that are supported in collation without having to fall back to the runtime's default locale.
-  
                 
                swizzle: The staticSIMD.%type%.swizzle()method creates a new SIMD data type instance with the lane values swizzled (re-ordered).
T
-  
                tan: TheMath.tan()function returns the tangent of a number.
-  
                tanh: TheMath.tanh()function returns the hyperbolic tangent of a number, that is
-  
                test: Thetest()method executes a search for a match between a regular expression and a specified string. Returnstrueorfalse.
-  
                then: Thethen()method returns aPromise. It takes up to two arguments: callback functions for the success and failure cases of thePromise.
-  
                throw: Thethrow()method resumes the execution of a generator by throwing an error into it and returns an object with two propertiesdoneandvalue.
-  
                toDateString: ThetoDateString()method returns the date portion of aDateobject in human readable form in American English.
-  
                toExponential: ThetoExponential()method returns a string representing the Number object in exponential notation.
-  
                toFixed: ThetoFixed()method formats a number using fixed-point notation.
-  
                  
                toGMTString: ThetoGMTString()method converts a date to a string, using Internet Greenwich Mean Time (GMT) conventions. The exact format of the value returned bytoGMTString()varies according to the platform and browser, in general it should represent a human readable date string.
-  
                toISOString: ThetoISOString()method returns a string in simplified extended ISO format (ISO 8601), which is always 24 or 27 characters long (YYYY-MM-DDTHH:mm:ss.sssZor±YYYYYY-MM-DDTHH:mm:ss.sssZ, respectively). The timezone is always zero UTC offset, as denoted by the suffix "Z".
-  
                 
                toInteger: TheNumber.toInteger()method used to evaluate the passed value and convert it to an integer, but its implementation has been removed.
-  
                toJSON: ThetoJSON()method returns a string representation of theDateobject.
-  
                toLocaleDateString: ThetoLocaleDateString()method returns a string with a language sensitive representation of the date portion of this date. The newlocalesandoptionsarguments 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 thelocalesandoptionsarguments, the locale used and the form of the string returned are entirely implementation dependent.
-  
                toLocaleFormat: The non-standardtoLocaleFormat()method converts a date to a string using the specified formatting.Intl.DateTimeFormatis an alternative to format dates in a standards-compliant way. See also the newer version ofDate.prototype.toLocaleDateString().
-  
                toLocaleLowerCase: ThetoLocaleLowerCase()method returns the calling string value converted to lower case, according to any locale-specific case mappings.
-  
                toLocaleString: ThetoLocaleString()method returns a string with a language sensitive representation of this number.
-  
                toLocaleString: ThetoLocaleString()method returns a string representing the elements of the array. The elements are converted to Strings using theirtoLocaleStringmethods and these Strings are separated by a locale-specific String (such as a comma “,”).
-  
                toLocaleString: ThetoLocaleString()method returns a string with a language sensitive representation of this date. The newlocalesandoptionsarguments let applications specify the language whose formatting conventions should be used and customize the behavior of the function. In older implementations, which ignore thelocalesandoptionsarguments, the locale used and the form of the string returned are entirely implementation dependent.
-  
                toLocaleString: ThetoLocaleString()method returns a string representing the object. This method is meant to be overridden by derived objects for locale-specific purposes.
-  
                toLocaleString: ThetoLocaleString()method returns a string representing the elements of the typed array. The elements are converted to strings and are separated by a locale-specific string (such as a comma “,”). This method has the same algorithm asArray.prototype.toLocaleString()and, as the typed array elements are numbers, the same algorithm asNumber.prototype.toLocaleString()applies for each element. TypedArray is one of the typed array types here.
-  
                toLocaleTimeString: ThetoLocaleTimeString()method returns a string with a language sensitive representation of the time portion of this date. The newlocalesandoptionsarguments let applications specify the language whose formatting conventions should be used and customize the behavior of the function. In older implementations, which ignore thelocalesandoptionsarguments, the locale used and the form of the string returned are entirely implementation dependent.
-  
                toLocaleUpperCase: ThetoLocaleUpperCase()method returns the calling string value converted to upper case, according to any locale-specific case mappings.
-  
                toLowerCase: ThetoLowerCase()method returns the calling string value converted to lower case.
-  
                toPrecision: ThetoPrecision()method returns a string representing theNumberobject to the specified precision.
-  
                toSource: ThetoSource()method returns a string representing the source code of the object.
-  
                toSource: ThetoSource()method returns a string representing the source code of the object.
-  
                toSource: ThetoSource()method returns a string representing the source code of the object.
-  
                toSource: ThetoSource()method returns a string representing the source code of the array.
-  
                  
                toSource: The non-standardSIMD.%type%.toSource()method returns a string representing the source code of the object.
-  
                toSource: ThetoSource()method returns code that could eval to the same error.
-  
                toSource: ThetoSource()method returns a string representing the source code of the object.
-  
                toSource: ThetoSource()method returns a string representing the source code of the object.
-  
                toSource: ThetoSource()method returns a string representing the source code of the object.
-  
                  
                toSource: ThetoSource()method returns a string representing the source code of the object.
-  
                toSource: ThetoSource()method returns a string representing the source code of the object.
-  
                toString: ThetoString()method returns a string representing the object.
-  
                toString: ThetoString()method returns a string representing the specified array and its elements. This method has the same algorithm asArray.prototype.toString(). TypedArray is one of the typed array types here.
-  
                toString: ThetoString()method returns a string representing the source code of the function.
-  
                toString: ThetoString()method returns a string representing the specifiedNumberobject.
-  
                toString: ThetoString()method returns a string representing the regular expression.
-  
                toString: ThetoString()method returns a string representing the specifiedDateobject.
-  
                 
                toString: TheSIMD.%type%.toString()method returns aStringrepresenting aSIMDobject.
-  
                toString: ThetoString()method returns a string representing the specified array and its elements.
-  
                toString: ThetoString()method returns a string representing the specifiedSymbolobject.
-  
                toString: ThetoString()method returns a string representing the specifiedErrorobject.
-  
                toString: ThetoString()method returns a string representing the specified Boolean object.
-  
                toString: ThetoString()method returns a string representing the specified object.
-  
                toTimeString: ThetoTimeString()method returns the time portion of aDateobject in human readable form in American English.
-  
                toUTCString: ThetoUTCString()method converts a date to a string, using the UTC time zone.
-  
                toUpperCase: ThetoUpperCase()method returns the calling string value converted to upper case.
-  
                 
                transfer: The staticArrayBuffer.transfer()method returns a newArrayBufferwhose contents have been taken from theoldBuffer's data and then is either truncated or zero-extended bynewByteLength. IfnewByteLengthisundefined, thebyteLengthof theoldBufferis used. This operation leavesoldBufferin a detached state.
-  
                trim: Thetrim()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.).
-  
                trimLeft: ThetrimLeft()method removes whitespace from the left end of a string.
-  
                trimRight: ThetrimRight()method removes whitespace from the right end of a string.
-  
                trunc: TheMath.trunc()function returns the integral part of a number by removing any fractional digits.
U
-  
                UTC: TheDate.UTC()method accepts the same parameters as the longest form of the constructor, and returns the number of milliseconds in aDateobject since January 1, 1970, 00:00:00, universal time.
-  
                 
                unobserve: The Array.unobserve() method was used to remove observers set byArray.observe(), but has been deprecated and removed from Browsers. You can use the more generalProxyobject instead.
-  
                 
                unobserve: TheObject.unobserve()method was used to remove observers set byObject.observe(), but has been deprecated and removed from Browsers. You can use the more generalProxyobject instead.
-  
                unshift: Theunshift()method adds one or more elements to the beginning of an array and returns the new length of the array.
-  
                unwatch: Theunwatch()method removes a watchpoint set with thewatch()method.
V
-  
                valueOf: ThevalueOf()method returns the primitive value of aDateobject.
-  
                valueOf: ThevalueOf()method returns the wrapped primitive value of aNumberobject.
-  
                valueOf: ThevalueOf()method returns the primitive value of the specified object.
-  
                valueOf: ThevalueOf()method returns the primitive value of aBooleanobject.
-  
                 
                valueOf: TheSIMD.%type%.valueOf()method performs a type check returns thethisvalue.
-  
                valueOf: ThevalueOf()method returns the primitive value of aStringobject.
-  
                valueOf: ThevalueOf()method returns the primitive value of a Symbol object.
-  
                 
                values: TheObject.values()method returns an array of a given object's own enumerable property values, in the same order as that provided by afor...inloop (the difference being that a for-in loop enumerates properties in the prototype chain as well).
-  
                values: Thevalues()method returns a newIteratorobject that contains the values for each element in theSetobject in insertion order.
-  
                values: Thevalues()method returns a newArray Iteratorobject that contains the values for each index in the array.
-  
                values: Thevalues()method returns a new Iterator object that contains the values for each element in theMapobject in insertion order.
-  
                values: Thevalues()method returns a newArray Iteratorobject that contains the values for each index in the array.
W
-  
                 
                wait: The staticAtomics.wait()method verifies that a given position in anInt32Arraystill contains a given value and sleeps awaiting or times out. It returns a string which is either"ok","not-equal", or"timed-out".
-  
                 
                wake: The staticAtomics.wake()method wakes up some agents that are sleeping in the wait queue.
-  
                watch: Thewatch()method watches for a property to be assigned a value and runs a function when that occurs.
X
-  
                 
                xor: The staticAtomics.xor()method computes a bitwise XOR with a given value at a given position in the array, and returns the old value at that position. This atomic operation guarantees that no other write happens until the modified value is written back.
-  
                 
                xor: The staticSIMD.%type%.xor()method returns a new instance with the logical XOR of the lane values (a ^ b).
Y
Z
_
-  
                  
                __defineGetter__: The__defineGetter__method binds an object's property to a function to be called when that property is looked up.
-  
                  
                __defineSetter__: The__defineSetter__method binds an object's property to a function to be called when an attempt is made to set that property.
-  
                  
                __lookupGetter__: The__lookupGetter__method returns the function bound as a getter to the specified property.
-  
                  
                __lookupSetter__: The__lookupSetter__method returns the function bound as a setter to the specified property.
See also
Document Tags and Contributors
    
    Tags: 
    
  
                    
                       Contributors to this page: 
        fscholz, 
        sidgan, 
        j3485, 
        SphinxKnight, 
        Sevenspade, 
        NickolayBot, 
        Dria, 
        Prodoc
                    
                    
                       Last updated by:
                      fscholz,