标签:ati function return func his 方法 添加 var time
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‘
标签:ati function return func his 方法 添加 var time
原文地址:https://www.cnblogs.com/lwwen/p/9192698.html