添加一个js扩展方法
程序员文章站
2022-07-10 20:38:49
String.prototype.repeatify=String.prototype.repeatify || function(times){ var str=''; for(var i=0;i
String.prototype.repeatify=String.prototype.repeatify || function(times){
var str='';
for(var i=0;i<times;i++){
console.log('this',this)
// this指向调用这个函数的对象
str+=this;
}
return str
}
'hello'.repeatify(3)======>'hellohellohello'
上一篇: python基础练习之几个简单的游戏
下一篇: ai怎么绘制白色的厨师帽图标?