Files
jshERP/erp_web/js/StringBuffer.js
2018-12-19 23:51:59 +08:00

11 lines
282 B
Java

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;
}