📜  Lodash _.repeat() 方法

📅  最后修改于: 2022-05-13 01:56:44.966000             🧑  作者: Mango

Lodash _.repeat() 方法

Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。

_.repeat()方法用于将给定的字符串重复 n 次。

句法:

_.repeat(string, n)

参数:此方法接受上面提到的两个参数,如下所述:

  • 字符串:此参数保存要重复的字符串。
  • n: n是重复字符串的次数。

返回值:该方法返回重复的字符串。

示例 1:

Javascript
// Requiring the lodash library  
const _ = require("lodash");  
      
// Use of _.repeat() method 
console.log(_.repeat('#', 4)); 
console.log(_.repeat('gfg', 3));


Javascript
// Requiring the lodash library  
const _ = require("lodash");  
      
// Use of _.repeat() method 
console.log(_.repeat('GeeksforGeeks', 0)); 
console.log(_.repeat('_GFG_', 3));


输出:

####
gfggfggfg

示例 2:

Javascript

// Requiring the lodash library  
const _ = require("lodash");  
      
// Use of _.repeat() method 
console.log(_.repeat('GeeksforGeeks', 0)); 
console.log(_.repeat('_GFG_', 3));

输出:

''
_GFG__GFG__GFG_