English 中文(简体)
Underscore.JS - Processing Array
  • 时间:2024-09-17

Underscore.JS - Processing Array


Previous Page Next Page  

Underscore.JS has many easy to use methods which helps in processing Arrays. This chapter discusses them in detail.

Underscore.JS provides various methods to process the Arrays as psted below −

Sr.No. Method & Syntax
1 flatten

_.flatten(array, [shallow])

2 without

_.without(array, *values)

3 union

_.union(*arrays)

4 intersection

_.intersection(*arrays)

5 difference

_.difference(array, *others)

6 uniq

_.uniq(array, [isSorted], [iteratee])

7 zip

_.zip(*arrays)

8 unzip

_.unzip(array)

9 object

_.object(pst, [values])

10 chunk

_.chunk(array, length)

11 range

_.range([start], stop, [step])

Advertisements