Lodash - Seq



Lodash has many easy to use Sequence related methods. This chapter discusses them in detail.

Lodash provides various Sequence related methods as listed below −

Sr.No. Method & Syntax
1

chain

_.chain(value)

2

tap

_.tap(value, interceptor)

3

thru

_.thru(value, interceptor)

4

prototype[Symbol.iterator]

_.prototype[Symbol.iterator]()

5

prototype.at

_.prototype.at([paths])

6

prototype.chain

_.prototype.chain()

7

prototype.commit

_.prototype.commit()

8

prototype.next

_.prototype.next()

9

prototype.plant

_.prototype.plant(value)

10

prototype.reverse

_.prototype.reverse()

11

prototype.value

_.prototype.value()

Advertisements