n次在JavaScript中滴加字符串
我们需要编写一个包含字符串和数字(例如n)的JavaScript函数,并且该函数应返回一个新字符串,其中原始字符串的所有字母都重复n次。
例如:如果字符串是-
const str = 'how are you'
数n是2。
输出结果
那么输出应该是-
const output = 'hhooww aarree yyoouu'
因此,让我们为该函数编写代码-
示例
为此的代码将是-
const str = 'how are you';
const repeatNTimes = (str, n) => {
let res = '';
for(let i = 0; i < str.length; i++){
// using the String.prototype.repeat() function
res += str[i].repeat(n);
};
return res;
};
console.log(repeatNTimes(str, 2));控制台中的输出将为-
hhooww aarree yyoouu
热门推荐
10 香港老妈结婚祝福语简短
11 毕业立体贺卡祝福语简短
12 简短新年年会祝福语
13 评论小品祝福语大全简短
14 恭喜师兄结婚祝福语简短
15 员工集体辞职祝福语简短
16 高中新生祝福语 简短
17 装修祝福语男生搞笑简短
18 生日开业蛋糕祝福语简短