Data Processing
Reverse an array using lodash _.reverse
reverse-arrayData Processing
Flatten array one level deep using lodash _.flatten
flatten-arrayData Processing
Flatten array completely using lodash _.flattenDeep
flatten-deep-arrayData Processing
Flatten array to specified depth using lodash _.flattenDepth
flatten-depth-arrayData Processing
Get the first element of array using lodash _.head
head-itemData Processing
Find the index of a value in array using lodash _.indexOf
index-ofData Processing
Get all elements except the last using lodash _.initial
initial-itemsData Processing
Remove values from array that are present in other arrays using lodash _.difference
difference-arraysData Processing
Drop first N items from array using lodash _.drop
drop-itemsData Processing
Drop last N items from array using lodash _.dropRight
drop-right-itemsData Processing
Drop items from array while predicate is true using lodash _.dropWhile
drop-whileData Processing
Fill array with value from start to end index using lodash _.fill
fill-array