Functions to add, get and remove items from arrays.
Concat two arrays into one.
Calls a function for every item in an array, stops when return result is false.
Returns the items in an array that matches the filter function.
Returns first item that mathces the specified filter function.
Iterates all items in the array and executes a function passing the array item as a parameter.
Groups the items in an array based on the specified property name or function.
Finds and returns index of specified item in an array.
Joins all elemnts in an array into a string
Returns the number of elements in an array.
The pop() method removes the last element from an array and returns that element. This method changes the length of the array.
Adds an item to the array (at the end) you are calling the method from.
The reverse() method reverses an array in place and returns the reference to the same array.
The shift() method removes the first element from an array and returns that element. This method changes the length of the array.
The Array.isArray() method determines whether the passed value is an Array. It returns true if the value is an Array, and false otherwise.
Returns a new array of a part of the array. Does not modify the existing array.
Tests whether at least one element in the array returns true with provided evaluator function.
Sorts the specified array (modifying the array that the sort method is called from).
Changes the contents of an array by removing or replacing existing elements and/or adding new elements at specified index.