var newlist = list.slice( 0, pos ).concat( tasks ).concat( list.slice( pos ) );

This makes me shudder just looking at it.

link|improve this question

it doesn't look that bad to me. It might be a little faster to just scoot the tail of the array out and drop in the new element, however. If you have to do this a lot you might want to think about a better data structure anyway. – Pointy Sep 3 '10 at 19:17
You mean a tree of some kind? What would you recommend? – Hamster Sep 3 '10 at 19:30
feedback

3 Answers

up vote 1 down vote accepted

If you didn't want to modify the original array, you can shorten yours a little like this:

var newlist = ​list.slice(0,pos).concat(tasks,list.slice(pos));

http://jsfiddle.net/RgYPw/

link|improve this answer
feedback

There is a splice method for Array.

link|improve this answer
But that appears to need each parameter listed out. How do I unfurl another array to be that function's extended parameters, then? Or DOES it accept an array parameter to splice together (as opposed to splicing the passed array as only a single item in the new array)? – Hamster Sep 3 '10 at 19:09
Yikes, that is ugly. You could use the apply method of the splice function and build the parameter array from the array you want to splice in, but that's exceptionally hideous. I'm thinking you're better off with your version. – Jacob Sep 3 '10 at 19:32
feedback

Your method is as good as any- you'd have to splice each member of your second array individually.

var list=[1,2,3,4,5,6,7,8,9], tasks= ['a','b','c'], pos=3;


while(tasks.length ) list.splice(pos,0,tasks.pop());

alert(list.join('\n'))

/*  returned value:
1
2
3
a
b
c
4
5
6
7
8
9
*/
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.