Open In App

Collect.js times() Method

Last Updated : 14 Dec, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report

The times() method is used to create a new collection by invoking the callback a given amount of times.

Syntax:

collect.times()

Parameters: The collect() method takes one argument that is converted into the collection and then times() method is applied on it.

Return Value: This method returns a new collection by invoking the callback a given amount of times.

Below example illustrate the times() method in collect.js:

Example 1:

JavaScript
const collect = require('collect.js'); 
  
const collection = collect()
    .times(8, number => number + 5);

let newObject = collection.all();
      
console.log(newObject);

Output:

[6, 7, 8, 9, 10, 11, 12, 13]

Example 2:

JavaScript
const collect = require('collect.js'); 
  
const collection = collect()
    .times(8, number => number * 5);

let newObject = collection.all();
      
console.log(newObject);

Output:

[5, 10, 15, 20, 25, 30, 35, 40]

Next Article

Similar Reads