Your Ad Here

Posted By

szsk on 08/02/06


Tagged

javascript array


Versions (?)

Who likes this?

1 person have marked this snippet as a favorite

hxseven


array_insert


 / Published in: JavaScript
 

  1. Array.prototype.insert = function( index, item ) {
  2. this.splice( index, 0, item );
  3. }
  4.  
  5. var arr = [ 1, 2, 3, 4, 5 ];
  6. alert( arr.insert( 3, 6 ) ); // 1,2,3,6,4,5

Report this snippet  

You need to login to post a comment.