码迷,mamicode.com
首页 > Web开发 > 详细

添加一个js扩展方法

时间:2018-06-17 14:19:12      阅读:186      评论:0      收藏:0      [点我收藏+]

标签: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‘

 

添加一个js扩展方法

标签:ati   function   return   func   his   方法   添加   var   time   

原文地址:https://www.cnblogs.com/lwwen/p/9192698.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!