添加一个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扩展方法的主要内容,如果未能解决你的问题,请参考以下文章

js中数组基本方法 + es6中数组的扩展方法

斗鱼扩展--管理移除房间

Vue.js“扩展”使用的正确方法是啥?

为system对象添加扩展方法

ES6数组扩展

jQuery开发插件的两个方法 js 深浅拷贝