| at() | Returns the element at the specified index. |
| concat() | Merges two or more arrays. |
| copyWithin() | Copies array elements within the array. |
| entries() | Returns an iterator object containing key-value pairs. |
| every() | Checks if all elements pass a test. |
| fill() | Fills array elements with a static value. |
| filter() | Creates a new array with elements that pass a test. |
| find() | Finds the first element that satisfies a condition. |
| findIndex() | Finds the index of the first element that satisfies a condition. |
| findLast() | Finds the last element that satisfies a condition. |
| findLastIndex() | Finds the index of the last element that satisfies a condition. |
| flat() | Flattens nested arrays. |
| flatMap() | Maps each element and flattens the result. |
| forEach() | Executes a function for each array element. |
| includes() | Checks if an array includes a value. |
| indexOf() | Finds the first occurrence of a value. |
| join() | Joins array elements into a string. |
| keys() | Returns an iterator with keys of the array. |
| lastIndexOf() | Finds the last occurrence of a value. |
| map() | Creates a new array by applying a function to each element. |
| pop() | Removes the last element and returns it. |
| push() | Adds one or more elements to the end of the array. |
| reduce() | Applies a function to reduce the array to a single value. |
| reduceRight() | Applies a function from right to left to reduce the array. |
| reverse() | Reverses the array elements. |
| shift() | Removes the first element and returns it. |
| slice() | Extracts a portion of the array into a new array. |
| some() | Checks if at least one element satisfies a condition. |
| sort() | Sorts the elements of the array. |
| splice() | Changes the contents of an array by removing/replacing elements. |
| toLocaleString() | Returns a localized string representation of the array. |
| toReversed() | Returns a reversed copy of the array. |
| toSorted() | Returns a sorted copy of the array. |
| toSpliced() | Returns a spliced copy of the array. |
| toString() | Returns a string representation of the array. |
| unshift() | Adds one or more elements to the start of the array. |
| values() | Returns an iterator with values of the array. |
| with() | Creates a new array with a modified element at a specific index. |