﻿function StringBuilder()
{
    this.Data = new Array();

    this.Append = function(data)
    {
        this.Data.push(data);
    };

    this.Clear = function()
    {
        this.Data = null;
        this.Data = new Array();
    };

    this.ToString = function()
    {
        return this.Data.join("");
    }
};
