length: number
Gets the length of the array. This is a number one higher than the highest element defined in an array.
toString(): string
Returns a string representation of an array.
toLocaleString(): string
Returns a string representation of an array. The elements are converted to string using their toLocaleString methods.
concat(...items: ConcatArray<T>[]): T[]
Combines two or more arrays.
concat(...items: (T | ConcatArray<T>)[]): T[]
Combines two or more arrays.
join(separator?: string): string
Adds all the elements of an array separated by the specified separator string.
Returns the index of the first occurrence of a value in an array.
lastIndexOf(searchElement: T,fromIndex?: number,): number
Returns the index of the last occurrence of a specified value in an array.
Determines whether all the members of an array satisfy the specified test.
Determines whether all the members of an array satisfy the specified test.
Determines whether the specified callback function returns true for any element of an array.
Performs the specified action for each element in an array.
Calls a defined callback function on each element of an array, and returns an array that contains the results.
Returns the elements of an array that meet the condition specified in a callback function.
Returns the elements of an array that meet the condition specified in a callback function.
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<U>(initialValue: 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.
reduceRight(callbackfn: () => T): T
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.
reduceRight<U>(initialValue: 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.