重复字母字符串-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 妈妈生日祝福语简短励志