![]() |
VOOZH | about |
The each() function iterates over the items in the collection and passes each item to a callback. In JavaScript, the array is first converted to a collection and then the function is applied to the collection.
Syntax:
data.each(item)
Parameters: This function accept a single parameter as mentioned above and described below:
Return Type: Return a result after performing the define operator operation.Below examples illustrate the each() function in collect.js
Example 1: Here in this example, we take a collection and then using the each() method , we apply + operation to the collection.
Output:
sum = 10
Example 2: