pop(): Stack<T> {
        if (this.data.length == 0) throw "Can not remove from an empty stack.";
        this.data.pop();
        return this;
    }