Term
|
Definition
|
|
Term
|
Definition
defines an array where any arguments are treated as elements, not length |
|
|
Term
|
Definition
merges with another array and returns that as a new array. |
|
|
Term
|
Definition
shallow copies part of an array and replaces another part of the array with it. |
|
|
Term
|
Definition
returns an Array Iterator containing the array's elements that can be traversed using next().value or for...of |
|
|
Term
|
Definition
returns whether all elements in the array pass a condition specified by a function |
|
|
Term
|
Definition
replaces some elements in the array with the same, specified value |
|
|
Term
|
Definition
returns an array with only the elements that pass a condition specified by a function |
|
|
Term
|
Definition
returns the value of the first element that passes a condition specified by a function |
|
|
Term
|
Definition
returns the index of the first element that passes a condition specified by a function |
|
|
Term
|
Definition
performs a specified function on every element |
|
|
Term
|
Definition
returns whether a given value is found in an array |
|
|
Term
|
Definition
returns the index of the first element that matches a given value or -1 if not found |
|
|
Term
|
Definition
concatenates the elements of the array into a string with a given separator between each value |
|
|
Term
|
Definition
returns an Array Iterator that contains string indices for all defined elements that can be traversed using next().value or for...of |
|
|
Term
|
Definition
returns the index of the last element that matches a given value or -1 if not found |
|
|
Term
|
Definition
returns a new array with the results of performing a specified function on each element |
|
|
Term
|
Definition
removes and then returns the last element of an array |
|
|
Term
|
Definition
adds element(s) to the end of an array and returns the new length |
|
|
Term
|
Definition
performs on every element from left to right a specified function, which results in a single returned value |
|
|
Term
|
Definition
performs on every element from right to left a specified function, which results in a single returned value |
|
|
Term
|
Definition
reorders elements in the array backwards |
|
|
Term
|
Definition
removes and then returns the first element of an array |
|
|
Term
|
Definition
returns a new array containing all the elements from one index inclusive to another index exclusive |
|
|
Term
|
Definition
returns whether any elements in the array pass a condition specified by a function |
|
|
Term
|
Definition
reorders elements in the array by the specified function or by unicode value |
|
|
Term
|
Definition
Inserts the given value at the given index and removes the given number of elements that had already been there |
|
|
Term
|
Definition
localizes each element by its type and the given configuration and concatenates them into a string |
|
|
Term
|
Definition
Returns the the array as a string with brackets and commas between each element |
|
|
Term
|
Definition
inserts the given elements at the start of the array and returns the new length |
|
|
Term
|
Definition
returns an Array Iterator containing the values of all the elements, which can be traversed using next().value or for...of |
|
|
Term
|
Definition
returns the array constructer |
|
|