js要repeat一个字符串有几种方法?除了es6自带的repeat

西兰花伟大炮
浏览 1982回答 1
1回答

__innocence

function str_repeat(str, num){      return new Array( num + 1 ).join( str );  } str_repeat("hello",3);//hellohellohello这是把字符串str重复num次的函数实现
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript