Lodash - 重复方法
语法
_.repeat([string=''], [n=1])
重复给定的字符串 n 次。
参数
[string=''] (字符串) − 要重复的字符串。
[n=1] (数字) − 要重复字符串的次数。
输出
(字符串) − 返回重复的字符串。
示例
var _ = require('lodash'); var result = _.repeat('*', 5); console.log(result);
将以上程序保存在 **tester.js** 中。运行以下命令以执行此程序。
命令
\>node tester.js
输出
*****
lodash_string.htm
广告