Open In App

Lodash _.repeat() Method

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

Syntax:

_.repeat(string, n);

Parameters:

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.




// 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.




// 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_
Article Tags :