Open In App

Collect.js times() Method

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:




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:




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]
Article Tags :