![]() |
VOOZH | about |
The nth() method is used to create a new collection consisting of every n-th element.
Syntax:
collect(array).nth(num)
Parameters: The collect() method takes one argument that is converted into the collection and then nth() method is applied on it. The nth() method holds a number.
Return Value: This method returns the nth element of the given collection.
Below example illustrate the nth() method in collect.js:
Example 1:
Output:
[ 1, 4, 7 ]
Example 2:
Output:
[
{ name: 'Rahul', dob: '25-10-96', section: 'A', score: 98 },
{ name: 'Abhishek', dob: '16-08-94', section: 'A', score: 98 }
]