this.add = function (a_item) {
this.items[length] = a_item;
this.items[this.items.length] = a_item;
oder
this.items.push(a_item);
Struppi.
this.add = function (a_item) {
this.items[length] = a_item;
this.items[this.items.length] = a_item;
oder
this.items.push(a_item);
Struppi.