VOOZH about

URL: https://www.geeksforgeeks.org/javascript/collect-js-times-method/

⇱ Collect.js times() Method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Collect.js times() Method

Last Updated : 14 Dec, 2020

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:

Output:

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

Example 2:

Output:

[5, 10, 15, 20, 25, 30, 35, 40]
Comment
Article Tags: