Here you can find the source of AddItem( item )
Array.prototype.AddItem = function( item ) { var i = this.length ; this[ i ] = item ;/*from w w w . j av a 2 s. com*/ return i ; }
Array.prototype.append = function (item) { this.push(item); return this; };
Array.prototype.append=function(obj,nodup){ if (!(nodup && this.contains(obj))){ this[this.length]=obj;
Array.prototype.appendUniqueObj = function(oneItem) if (!this.contains(oneItem)) this[this.length] = oneItem;
Array.prototype.append_all=function(from) { for(var i=0;i<from.length;i++) { this.append(from[i]); return this;
Array.prototype.Append = function( arr ) for ( var i = 0; i < arr.length; i++ ) this.push( arr[ i ] ); };
Array.prototype.add = function(a2) { var l1 = this.length; var l2 = a2.length; var len = (l1 < l2 ? l1 : l2); var result = new Array(len); for (var i = 0; i < len; i++) { result[i] = this[i] + a2[i]; return result; ...
Array.prototype.add = function (e) {
this.push(e);
};
Array.prototype.add = function(el) { this.push(el); return this; };
Array.prototype.add = function (el) { var index = this.indexOf(el); if (index == -1) { this.push(el); }; Array.prototype.remove = function (el) { var index = this.indexOf(el); if (index > -1) { ...