Here you can find the source of insert(elem, pos)
/* Insert expands the array. * Add only adds an element to the array if the given * position in the array has not been occupied. *///from w ww. j ava 2 s .c o m Array.prototype.insert = function(elem, pos) { this.splice(pos, 0, elem); }
Array.prototype.insert = function( i, v ) { if (this.length == 0) return [v]; if( i>=0 ) { var a = this.slice(), b = a.splice( i ); a[i] = v; return a.concat( b ); }; ...
Array.prototype.insert = function(element) { if (this.indexOf(element) === -1) { this.push(element); return this; };
Array.prototype.insert = function(i, ob) { i = i - 1; if (i < 0)i = 0; if (i > this.length)i = this.length; var st = (i == 0) ? [] : this.slice(0, i); st.push(ob); var ed = (i >= this.length) ? [] : this.slice(i); return st.concat(ed); }; ...
Array.prototype.insert = function(idx, item) {
this.splice(idx, 0, item);
};
Array.prototype.insert = function(index , item){
this.splice(index, 0, item);
};