当前位置:Gxlcms > JavaScript > js字符连接对象

js字符连接对象

时间:2021-07-01 10:21:17 帮助过:10人阅读

function StringBuffer(){
this.str = [];
}

StringBuffer.prototype = {
append:function(str){
this.str.push(str);
return this;
},
toString:function(){
return this.str.join('');
},
clear:function(){
this.str.length = 0;
return this;
}
}

人气教程排行