添加一个js扩展方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了添加一个js扩展方法相关的知识,希望对你有一定的参考价值。
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扩展方法的主要内容,如果未能解决你的问题,请参考以下文章