js效率组装字符串StringBuffer_javascript技巧
时间:2021-07-01 10:21:17
帮助过:17人阅读
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;
}