function Buffer(txt) {
this.text = txt || '';
this.push = function(txt){
this.text+=txt;
}
this.get = function(){return this.text;}
this.clear = function(){this.text = "";}
};
var buffer = new Buffer();
buffer.push("Тест");
buffer.push(" тебя не съест ");
alert( buffer.get() ); // Тест тебя не съест
buffer.clear();
alert( buffer.get() ); // ""