Open In App

Collect.js times() Method

Improve
Improve
Like Article
Like
Save
Share
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]

Last Updated : 14 Dec, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads