猿问
js要repeat一个字符串有几种方法?除了es6自带的repeat
西兰花伟大炮
浏览 1988
回答 1
1回答
__innocence
function str_repeat(str, num){ return new Array( num + 1 ).join( str ); } str_repeat("hello",3);//hellohellohello这是把字符串str重复num次的函数实现
1
0
3
随时随地看视频
慕课网APP
相关分类
JavaScript
我要回答