js 效率组装字符串 StringBuffer
时间:2021-07-01 10:21:17
帮助过:14人阅读
function StringBuffer() {
this.array = new Array();
}
StringBuffer.prototype.append = function(value) {
this.array[this.array.length] = value;
return this;
}
StringBuffer.prototype.toString = function() {
var _string = this.array.join("");
return _string;
}