VOOZH about

URL: https://www.geeksforgeeks.org/javascript/underscore-js-_-times-function/

⇱ Underscore.js _.times() Function - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Underscore.js _.times() Function

Last Updated : 15 Jul, 2025

Underscore.js_.times() function is used to call the function a particular number of times i.e. execution of a function(f) "n" times.

NOTE: It is very necessary to link the underscore CDN before going and using the underscore functions in the browser. When linking the underscore.js CDN link, the "_" is attached to the browser as a global variable.

Syntax:

_.times(n, function);

Parameters:

  • n: It tells how many times a function is needed to be executed.
  • function: It is a function that is to be invoked n times.

Return Value:

It produces an array of returned values and this array is returned by the function.

Example 1: The below code example shows the basic implementation of the _.times() method of underscore.js.

Output:

👁 Image

Example 2: The below code example is another practical implementation of the _.times() method.

Output:

👁 Image
Comment