Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Lodash _.repeat() Method

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Lodash is a JavaScript library that works on the top of underscore.js. Lodash helps in working with arrays, strings, objects, numbers, etc. 

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

Syntax:

_.repeat(string, n)

Parameters: This method accepts two parameters as mentioned above and described below:

  • 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:

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:  

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_
My Personal Notes arrow_drop_up
Last Updated : 09 Sep, 2020
Like Article
Save Article
Similar Reads
Related Tutorials