zip_.zip(*arrays) Merges together the values of each of the arrays with the values at the corresponding position. Useful when
initial_.initial(array, [n]) Returns everything but the last entry of the array. Especially useful on the arguments object. Pass
indexOf_.indexOf(array, value, [isSorted]) Returns the index at which value can be found in the array, or -1
compact_.compact(array) Returns a copy of the array with all falsy values removed. In JavaScript, false, null
findLastIndex_.findLastIndex(array, predicate, [context]) Like _
flatten_.flatten(array, [shallow]) Flattens a nested array (the nesting can be to any depth). If you pass shallow,
findIndex_.findIndex(array, predicate, [context]) Similar to _
object_.object(list, [values]) Converts arrays into objects. Pass either a single list of [key, value] pairs, or a list
uniq_.uniq(array, [isSorted], [iteratee]) Alias: unique Produces a duplicate-free version of the
without_.without(array, *values) Returns a copy of the array with all instances of the values removed.
Page 2 of 2