function StringBuffer(){
this.str = [];
}
StringBuffer.prototype = {
append:function(str){
this.str.push(str);
これを返します。
},
toString:function(){
return this.str.join('');
},
clear:function(){
this.str.length = 0;
これを返します。
}
}