Lodash是一个JavaScript库,可在underscore.js之上运行。 Lodash帮助处理数组,字符串,对象,数字等。
_.repeat()方法用于将给定的字符串重复n次。
用法:
_.repeat(string, n)
参数:此方法接受上面提到和下面描述的两个参数:
- string:此参数保存要重复的字符串。
- n:n是重复字符串的次数。
返回值:此方法返回重复的字符串。
范例1:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.repeat() method
console.log(_.repeat('#', 4));
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_
相关用法
- underscore.js _.repeat()用法及代码示例
- Javascript string.repeat()用法及代码示例
- CSS background-repeat用法及代码示例
- CSS border-image-repeat用法及代码示例
- CSS mask-repeat属性用法及代码示例
- Lodash _.method()用法及代码示例
- Lodash _.sneq()用法及代码示例
- Lodash _.toQuery()用法及代码示例
- Lodash _.uniqWith()用法及代码示例
- Lodash _.xorWith()用法及代码示例
- Lodash _.head()用法及代码示例
- Lodash _.remove()用法及代码示例
注:本文由纯净天空筛选整理自sanjoy_62大神的英文原创作品 Lodash _.repeat() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。