function StringBuffer(){
this.str = [];
}
StringBuffer.prototype = {
add:function(str){
this.str.push(str);
이것을 반환하세요.
},
toString:function(){
return this.str.join('');
},
clear:function(){
this.str.length = 0;
이것을 반환하세요.
}
}