function StringBuffer() {
this.array = new Array();
}
StringBuffer.prototype.append = 함수(값) {
this.array[this.array.length] = 값;
이것을 돌려주세요;
}
StringBuffer.prototype.toString = function() {
var _string = this.array.join("");
return _string;
}