CommitmentAssociationListResult interface
- Extends
-
Array<CommitmentAssociation>
Properties
next |
A URI to retrieve the next page of results. |
Inherited Properties
length | Gets or sets the length of the array. This is a number one higher than the highest index in the array. |
Inherited Methods
at(number) | |
concat((Commitment |
Combines two or more arrays. This method returns a new array without modifying any existing arrays. |
concat(Concat |
Combines two or more arrays. This method returns a new array without modifying any existing arrays. |
copy |
Returns the this object after copying a section of the array identified by start and end to the same array starting at position target |
entries() | Returns an iterable of key, value pairs for every entry in the array |
every((value: Commitment |
Determines whether all the members of an array satisfy the specified test. |
every<S>((value: Commitment |
Determines whether all the members of an array satisfy the specified test. |
fill(Commitment |
Changes all array elements from |
filter((value: Commitment |
Returns the elements of an array that meet the condition specified in a callback function. |
filter<S>((value: Commitment |
Returns the elements of an array that meet the condition specified in a callback function. |
find((value: Commitment |
|
find<S>((this: void, value: Commitment |
Returns the value of the first element in the array where predicate is true, and undefined otherwise. |
find |
Returns the index of the first element in the array where predicate is true, and -1 otherwise. |
flat<A, D>(A, D) | Returns a new array with all sub-array elements concatenated into it recursively up to the specified depth. |
flat |
Calls a defined callback function on each element of an array. Then, flattens the result into a new array. This is identical to a map followed by flat with depth 1. |
for |
Performs the specified action for each element in an array. |
includes(Commitment |
Determines whether an array includes a certain element, returning true or false as appropriate. |
index |
Returns the index of the first occurrence of a value in an array, or -1 if it is not present. |
join(string) | Adds all the elements of an array into a string, separated by the specified separator string. |
keys() | Returns an iterable of keys in the array |
last |
Returns the index of the last occurrence of a specified value in an array, or -1 if it is not present. |
map<U>((value: Commitment |
Calls a defined callback function on each element of an array, and returns an array that contains the results. |
pop() | Removes the last element from an array and returns it. If the array is empty, undefined is returned and the array is not modified. |
push(Commitment |
Appends new elements to the end of an array, and returns the new length of the array. |
reduce((previous |
Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function. |
reduce((previous |
|
reduce<U>((previous |
Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function. |
reduce |
Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function. |
reduce |
|
reduce |
Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function. |
reverse() | Reverses the elements in an array in place. This method mutates the array and returns a reference to the same array. |
shift() | Removes the first element from an array and returns it. If the array is empty, undefined is returned and the array is not modified. |
slice(number, number) | Returns a copy of a section of an array. For both start and end, a negative index can be used to indicate an offset from the end of the array. For example, -2 refers to the second to last element of the array. |
some((value: Commitment |
Determines whether the specified callback function returns true for any element of an array. |
sort((a: Commitment |
Sorts an array in place. This method mutates the array and returns a reference to the same array. |
splice(number, number) | Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements. |
splice(number, number, Commitment |
Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements. |
to |
Returns a string representation of an array. The elements are converted to string using their toLocaleString methods. |
to |
Returns a string representation of an array. |
unshift(Commitment |
Inserts new elements at the start of an array, and returns the new length of the array. |
values() | Returns an iterable of values in the array |
[iterator]() | Iterator |
[unscopables]() | Returns an object whose properties have the value 'true' when they will be absent when used in a 'with' statement. |
Property Details
nextLink
A URI to retrieve the next page of results.
nextLink?: string
Property Value
string
Inherited Property Details
length
Gets or sets the length of the array. This is a number one higher than the highest index in the array.
length: number
Property Value
number
Inherited From Array.length
Inherited Method Details
at(number)
function at(index: number): undefined | CommitmentAssociation
Parameters
- index
-
number
Returns
undefined | CommitmentAssociation
Inherited From Array.at
concat((CommitmentAssociation | ConcatArray<CommitmentAssociation>)[])
Combines two or more arrays. This method returns a new array without modifying any existing arrays.
function concat(items: (CommitmentAssociation | ConcatArray<CommitmentAssociation>)[]): CommitmentAssociation[]
Parameters
- items
-
(CommitmentAssociation | ConcatArray<CommitmentAssociation>)[]
Additional arrays and/or items to add to the end of the array.
Returns
Inherited From Array.concat
concat(ConcatArray<CommitmentAssociation>[])
Combines two or more arrays. This method returns a new array without modifying any existing arrays.
function concat(items: ConcatArray<CommitmentAssociation>[]): CommitmentAssociation[]
Parameters
- items
-
ConcatArray<CommitmentAssociation>[]
Additional arrays and/or items to add to the end of the array.
Returns
Inherited From Array.concat
copyWithin(number, number, number)
Returns the this object after copying a section of the array identified by start and end to the same array starting at position target
function copyWithin(target: number, start: number, end?: number): CommitmentAssociationListResult
Parameters
- target
-
number
If target is negative, it is treated as length+target where length is the length of the array.
- start
-
number
If start is negative, it is treated as length+start. If end is negative, it is treated as length+end.
- end
-
number
If not specified, length of the this object is used as its default value.
Returns
Inherited From Array.copyWithin
entries()
Returns an iterable of key, value pairs for every entry in the array
function entries(): IterableIterator<[number, CommitmentAssociation]>
Returns
IterableIterator<[number, CommitmentAssociation]>
Inherited From Array.entries
every((value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => unknown, any)
Determines whether all the members of an array satisfy the specified test.
function every(predicate: (value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => unknown, thisArg?: any): boolean
Parameters
- predicate
-
(value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => unknown
A function that accepts up to three arguments. The every method calls the predicate function for each element in the array until the predicate returns a value which is coercible to the Boolean value false, or until the end of the array.
- thisArg
-
any
An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.
Returns
boolean
Inherited From Array.every
every<S>((value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => value, any)
Determines whether all the members of an array satisfy the specified test.
function every<S>(predicate: (value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => value, thisArg?: any): this
Parameters
- predicate
-
(value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => value
A function that accepts up to three arguments. The every method calls the predicate function for each element in the array until the predicate returns a value which is coercible to the Boolean value false, or until the end of the array.
- thisArg
-
any
An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.
Returns
this
Inherited From Array.every
fill(CommitmentAssociation, number, number)
Changes all array elements from start
to end
index to a static value
and returns the modified array
function fill(value: CommitmentAssociation, start?: number, end?: number): CommitmentAssociationListResult
Parameters
- value
- CommitmentAssociation
value to fill array section with
- start
-
number
index to start filling the array at. If start is negative, it is treated as length+start where length is the length of the array.
- end
-
number
index to stop filling the array at. If end is negative, it is treated as length+end.
Returns
Inherited From Array.fill
filter((value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => unknown, any)
Returns the elements of an array that meet the condition specified in a callback function.
function filter(predicate: (value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => unknown, thisArg?: any): CommitmentAssociation[]
Parameters
- predicate
-
(value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => unknown
A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.
- thisArg
-
any
An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.
Returns
Inherited From Array.filter
filter<S>((value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => value, any)
Returns the elements of an array that meet the condition specified in a callback function.
function filter<S>(predicate: (value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => value, thisArg?: any): S[]
Parameters
- predicate
-
(value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => value
A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.
- thisArg
-
any
An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.
Returns
S[]
Inherited From Array.filter
find((value: CommitmentAssociation, index: number, obj: CommitmentAssociation[]) => unknown, any)
function find(predicate: (value: CommitmentAssociation, index: number, obj: CommitmentAssociation[]) => unknown, thisArg?: any): undefined | CommitmentAssociation
Parameters
- predicate
-
(value: CommitmentAssociation, index: number, obj: CommitmentAssociation[]) => unknown
- thisArg
-
any
Returns
undefined | CommitmentAssociation
Inherited From Array.find
find<S>((this: void, value: CommitmentAssociation, index: number, obj: CommitmentAssociation[]) => value, any)
Returns the value of the first element in the array where predicate is true, and undefined otherwise.
function find<S>(predicate: (this: void, value: CommitmentAssociation, index: number, obj: CommitmentAssociation[]) => value, thisArg?: any): undefined | S
Parameters
- predicate
-
(this: void, value: CommitmentAssociation, index: number, obj: CommitmentAssociation[]) => value
find calls predicate once for each element of the array, in ascending order, until it finds one where predicate returns true. If such an element is found, find immediately returns that element value. Otherwise, find returns undefined.
- thisArg
-
any
If provided, it will be used as the this value for each invocation of predicate. If it is not provided, undefined is used instead.
Returns
undefined | S
Inherited From Array.find
findIndex((value: CommitmentAssociation, index: number, obj: CommitmentAssociation[]) => unknown, any)
Returns the index of the first element in the array where predicate is true, and -1 otherwise.
function findIndex(predicate: (value: CommitmentAssociation, index: number, obj: CommitmentAssociation[]) => unknown, thisArg?: any): number
Parameters
- predicate
-
(value: CommitmentAssociation, index: number, obj: CommitmentAssociation[]) => unknown
find calls predicate once for each element of the array, in ascending order, until it finds one where predicate returns true. If such an element is found, findIndex immediately returns that element index. Otherwise, findIndex returns -1.
- thisArg
-
any
If provided, it will be used as the this value for each invocation of predicate. If it is not provided, undefined is used instead.
Returns
number
Inherited From Array.findIndex
flat<A, D>(A, D)
Returns a new array with all sub-array elements concatenated into it recursively up to the specified depth.
function flat<A, D>(this: A, depth?: D): FlatArray<A, D>[]
Parameters
- this
-
A
- depth
-
D
The maximum recursion depth
Returns
FlatArray<A, D>[]
Inherited From Array.flat
flatMap<U, This>((this: This, value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => U | (readonly U[]), This)
Calls a defined callback function on each element of an array. Then, flattens the result into a new array. This is identical to a map followed by flat with depth 1.
function flatMap<U, This>(callback: (this: This, value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => U | (readonly U[]), thisArg?: This): U[]
Parameters
- callback
-
(this: This, value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => U | (readonly U[])
A function that accepts up to three arguments. The flatMap method calls the callback function one time for each element in the array.
- thisArg
-
This
An object to which the this keyword can refer in the callback function. If thisArg is omitted, undefined is used as the this value.
Returns
U[]
Inherited From Array.flatMap
forEach((value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => void, any)
Performs the specified action for each element in an array.
function forEach(callbackfn: (value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => void, thisArg?: any)
Parameters
- callbackfn
-
(value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => void
A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.
- thisArg
-
any
An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
Inherited From Array.forEach
includes(CommitmentAssociation, number)
Determines whether an array includes a certain element, returning true or false as appropriate.
function includes(searchElement: CommitmentAssociation, fromIndex?: number): boolean
Parameters
- searchElement
- CommitmentAssociation
The element to search for.
- fromIndex
-
number
The position in this array at which to begin searching for searchElement.
Returns
boolean
Inherited From Array.includes
indexOf(CommitmentAssociation, number)
Returns the index of the first occurrence of a value in an array, or -1 if it is not present.
function indexOf(searchElement: CommitmentAssociation, fromIndex?: number): number
Parameters
- searchElement
- CommitmentAssociation
The value to locate in the array.
- fromIndex
-
number
The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.
Returns
number
Inherited From Array.indexOf
join(string)
Adds all the elements of an array into a string, separated by the specified separator string.
function join(separator?: string): string
Parameters
- separator
-
string
A string used to separate one element of the array from the next in the resulting string. If omitted, the array elements are separated with a comma.
Returns
string
Inherited From Array.join
keys()
Returns an iterable of keys in the array
function keys(): IterableIterator<number>
Returns
IterableIterator<number>
Inherited From Array.keys
lastIndexOf(CommitmentAssociation, number)
Returns the index of the last occurrence of a specified value in an array, or -1 if it is not present.
function lastIndexOf(searchElement: CommitmentAssociation, fromIndex?: number): number
Parameters
- searchElement
- CommitmentAssociation
The value to locate in the array.
- fromIndex
-
number
The array index at which to begin searching backward. If fromIndex is omitted, the search starts at the last index in the array.
Returns
number
Inherited From Array.lastIndexOf
map<U>((value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => U, any)
Calls a defined callback function on each element of an array, and returns an array that contains the results.
function map<U>(callbackfn: (value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => U, thisArg?: any): U[]
Parameters
- callbackfn
-
(value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => U
A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.
- thisArg
-
any
An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
Returns
U[]
Inherited From Array.map
pop()
Removes the last element from an array and returns it. If the array is empty, undefined is returned and the array is not modified.
function pop(): undefined | CommitmentAssociation
Returns
undefined | CommitmentAssociation
Inherited From Array.pop
push(CommitmentAssociation[])
Appends new elements to the end of an array, and returns the new length of the array.
function push(items: CommitmentAssociation[]): number
Parameters
- items
New elements to add to the array.
Returns
number
Inherited From Array.push
reduce((previousValue: CommitmentAssociation, currentValue: CommitmentAssociation, currentIndex: number, array: CommitmentAssociation[]) => CommitmentAssociation)
Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
function reduce(callbackfn: (previousValue: CommitmentAssociation, currentValue: CommitmentAssociation, currentIndex: number, array: CommitmentAssociation[]) => CommitmentAssociation): CommitmentAssociation
Parameters
- callbackfn
-
(previousValue: CommitmentAssociation, currentValue: CommitmentAssociation, currentIndex: number, array: CommitmentAssociation[]) => CommitmentAssociation
A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.
Returns
Inherited From Array.reduce
reduce((previousValue: CommitmentAssociation, currentValue: CommitmentAssociation, currentIndex: number, array: CommitmentAssociation[]) => CommitmentAssociation, CommitmentAssociation)
function reduce(callbackfn: (previousValue: CommitmentAssociation, currentValue: CommitmentAssociation, currentIndex: number, array: CommitmentAssociation[]) => CommitmentAssociation, initialValue: CommitmentAssociation): CommitmentAssociation
Parameters
- callbackfn
-
(previousValue: CommitmentAssociation, currentValue: CommitmentAssociation, currentIndex: number, array: CommitmentAssociation[]) => CommitmentAssociation
- initialValue
- CommitmentAssociation
Returns
Inherited From Array.reduce
reduce<U>((previousValue: U, currentValue: CommitmentAssociation, currentIndex: number, array: CommitmentAssociation[]) => U, U)
Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
function reduce<U>(callbackfn: (previousValue: U, currentValue: CommitmentAssociation, currentIndex: number, array: CommitmentAssociation[]) => U, initialValue: U): U
Parameters
- callbackfn
-
(previousValue: U, currentValue: CommitmentAssociation, currentIndex: number, array: CommitmentAssociation[]) => U
A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.
- initialValue
-
U
If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.
Returns
U
Inherited From Array.reduce
reduceRight((previousValue: CommitmentAssociation, currentValue: CommitmentAssociation, currentIndex: number, array: CommitmentAssociation[]) => CommitmentAssociation)
Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
function reduceRight(callbackfn: (previousValue: CommitmentAssociation, currentValue: CommitmentAssociation, currentIndex: number, array: CommitmentAssociation[]) => CommitmentAssociation): CommitmentAssociation
Parameters
- callbackfn
-
(previousValue: CommitmentAssociation, currentValue: CommitmentAssociation, currentIndex: number, array: CommitmentAssociation[]) => CommitmentAssociation
A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.
Returns
Inherited From Array.reduceRight
reduceRight((previousValue: CommitmentAssociation, currentValue: CommitmentAssociation, currentIndex: number, array: CommitmentAssociation[]) => CommitmentAssociation, CommitmentAssociation)
function reduceRight(callbackfn: (previousValue: CommitmentAssociation, currentValue: CommitmentAssociation, currentIndex: number, array: CommitmentAssociation[]) => CommitmentAssociation, initialValue: CommitmentAssociation): CommitmentAssociation
Parameters
- callbackfn
-
(previousValue: CommitmentAssociation, currentValue: CommitmentAssociation, currentIndex: number, array: CommitmentAssociation[]) => CommitmentAssociation
- initialValue
- CommitmentAssociation
Returns
Inherited From Array.reduceRight
reduceRight<U>((previousValue: U, currentValue: CommitmentAssociation, currentIndex: number, array: CommitmentAssociation[]) => U, U)
Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
function reduceRight<U>(callbackfn: (previousValue: U, currentValue: CommitmentAssociation, currentIndex: number, array: CommitmentAssociation[]) => U, initialValue: U): U
Parameters
- callbackfn
-
(previousValue: U, currentValue: CommitmentAssociation, currentIndex: number, array: CommitmentAssociation[]) => U
A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.
- initialValue
-
U
If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.
Returns
U
Inherited From Array.reduceRight
reverse()
Reverses the elements in an array in place. This method mutates the array and returns a reference to the same array.
function reverse(): CommitmentAssociation[]
Returns
Inherited From Array.reverse
shift()
Removes the first element from an array and returns it. If the array is empty, undefined is returned and the array is not modified.
function shift(): undefined | CommitmentAssociation
Returns
undefined | CommitmentAssociation
Inherited From Array.shift
slice(number, number)
Returns a copy of a section of an array. For both start and end, a negative index can be used to indicate an offset from the end of the array. For example, -2 refers to the second to last element of the array.
function slice(start?: number, end?: number): CommitmentAssociation[]
Parameters
- start
-
number
The beginning index of the specified portion of the array. If start is undefined, then the slice begins at index 0.
- end
-
number
The end index of the specified portion of the array. This is exclusive of the element at the index 'end'. If end is undefined, then the slice extends to the end of the array.
Returns
Inherited From Array.slice
some((value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => unknown, any)
Determines whether the specified callback function returns true for any element of an array.
function some(predicate: (value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => unknown, thisArg?: any): boolean
Parameters
- predicate
-
(value: CommitmentAssociation, index: number, array: CommitmentAssociation[]) => unknown
A function that accepts up to three arguments. The some method calls the predicate function for each element in the array until the predicate returns a value which is coercible to the Boolean value true, or until the end of the array.
- thisArg
-
any
An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.
Returns
boolean
Inherited From Array.some
sort((a: CommitmentAssociation, b: CommitmentAssociation) => number)
Sorts an array in place. This method mutates the array and returns a reference to the same array.
function sort(compareFn?: (a: CommitmentAssociation, b: CommitmentAssociation) => number): CommitmentAssociationListResult
Parameters
- compareFn
-
(a: CommitmentAssociation, b: CommitmentAssociation) => number
Function used to determine the order of the elements. It is expected to return a negative value if the first argument is less than the second argument, zero if they're equal, and a positive value otherwise. If omitted, the elements are sorted in ascending, ASCII character order.
[11,2,22,1].sort((a, b) => a - b)
Returns
Inherited From Array.sort
splice(number, number)
Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.
function splice(start: number, deleteCount?: number): CommitmentAssociation[]
Parameters
- start
-
number
The zero-based location in the array from which to start removing elements.
- deleteCount
-
number
The number of elements to remove.
Returns
An array containing the elements that were deleted.
Inherited From Array.splice
splice(number, number, CommitmentAssociation[])
Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.
function splice(start: number, deleteCount: number, items: CommitmentAssociation[]): CommitmentAssociation[]
Parameters
- start
-
number
The zero-based location in the array from which to start removing elements.
- deleteCount
-
number
The number of elements to remove.
- items
Elements to insert into the array in place of the deleted elements.
Returns
An array containing the elements that were deleted.
Inherited From Array.splice
toLocaleString()
Returns a string representation of an array. The elements are converted to string using their toLocaleString methods.
function toLocaleString(): string
Returns
string
Inherited From Array.toLocaleString
toString()
Returns a string representation of an array.
function toString(): string
Returns
string
Inherited From Array.toString
unshift(CommitmentAssociation[])
Inserts new elements at the start of an array, and returns the new length of the array.
function unshift(items: CommitmentAssociation[]): number
Parameters
- items
Elements to insert at the start of the array.
Returns
number
Inherited From Array.unshift
values()
Returns an iterable of values in the array
function values(): IterableIterator<CommitmentAssociation>
Returns
IterableIterator<CommitmentAssociation>
Inherited From Array.values
[iterator]()
Iterator
function [iterator](): IterableIterator<CommitmentAssociation>
Returns
IterableIterator<CommitmentAssociation>
Inherited From Array.__@iterator@497
[unscopables]()
Returns an object whose properties have the value 'true' when they will be absent when used in a 'with' statement.
function [unscopables](): { copyWithin: boolean, entries: boolean, fill: boolean, find: boolean, findIndex: boolean, keys: boolean, values: boolean }
Returns
{ copyWithin: boolean, entries: boolean, fill: boolean, find: boolean, findIndex: boolean, keys: boolean, values: boolean }
Inherited From Array.__@unscopables@499