Open In App

Lodash _.repeat() Method

Last Updated : 31 Oct, 2023
Summarize
Comments
Improve
Suggest changes
Share
Like Article
Like
Report

Lodash _.repeat() method is used to repeat the given string n times.

Syntax:

_.repeat(string, n);

Parameters:

  • string: This parameter holds the string to repeat.
  • n: n is the number of times to repeat the string.

Return Value:

This method returns the repeated string.

Example 1: In this example, we are repeating the given string the given number of times by the use of the lodash _.repeate() method.

JavaScript
// Requiring the lodash library  
const _ = require("lodash");

// Use of _.repeat() method 
console.log(_.repeat('#', 4));
console.log(_.repeat('gfg', 3));

Output:

####
gfggfggfg

Example 2: In this example, we are repeating the given string the given number of times by the use of the lodash _.repeate() method.

JavaScript
// Requiring the lodash library  
const _ = require("lodash");

// Use of _.repeat() method 
console.log(_.repeat('GeeksforGeeks', 0));
console.log(_.repeat('_GFG_', 3));

Output:

''
_GFG__GFG__GFG_

Similar Reads