Open In App

Lodash _.repeat() Method

Last Updated : 31 Oct, 2023
Improve
Improve
Like Article
Like
Save
Share
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_

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads