_chunk |
Creates an array of elements split into groups the length of size |
_compact |
Creates an array with all falsy values removed |
_concat |
Creates a new array concatenating array with any additional arrays and/or values |
_difference |
Similar to without, but returns the values from array that are not present in the other arrays |
_drop |
Creates a slice of array with n elements dropped from the beginning |
_dropRight |
Creates a slice of array with n elements dropped at the end |
_fill |
Fills elements of array with value from start up to, but not including, end. Note that fill is a mutable method in both native and Lodash/Underscore. |
_find |
Returns the value of the first element in the array that satisfies the provided testing function. Otherwise undefined is returned. |
_findIndex |
Returns the index of the first element in the array that satisfies the provided testing function. Otherwise -1 is returned. |
_first |
Returns the first element of an array. Passing n will return the first n elements of the array. |
_flatten |
Flattens array a single level deep. |
_flattenDeep |
Recursively flattens array. |
_fromPairs |
Returns an object composed from key-value pairs. |
_head |
Gets the first element |
_.tail |
Gets all but the first element. |
_indexOf |
Returns the first index at which a given element can be found in the array, or -1 if it is not present. |
_intersection |
Returns an array that is the intersection of all the arrays. Each value in the result is present in each of the arrays |
_takeRight |
Creates a slice of array with n elements taken from the end. |
_isArray |
Returns true if given value is an array |
_isArrayBuffer |
Checks if value is classified as an ArrayBuffer object |
_join |
Joins a list of elements in an array with a given separator |
_last |
Returns the last element of an array. Passing n will return the last n elements of the array |
_lastIndexOf |
Returns the index of the last occurrence of value in the array, or -1 if value is not present. |
_reverse |
Reverses array so that the first element becomes the last, the second element becomes the second to last, and so on |
_slice |
Returns a shallow copy of a portion of an array into a new array object selected from begin to end (end not included) |
_without |
Returns an array where matching items are filtered. |