重复字符串-Javascript返回任意次数重复的字符串的最佳或最简洁方法是什么?以下是我迄今为止最好的尝试:function repeat(s, n){
var a = [];
while(a.length < n){
a.push(s);
}
return a.join('');}
添加回答
举报
0/150
提交
取消