var newlist = list.slice( 0, pos ).concat( tasks ).concat( list.slice( pos ) );
This makes me shudder just looking at it.
This makes me shudder just looking at it.
| |||||
feedback
|
|
If you didn't want to modify the original array, you can shorten yours a little like this:
| |||
|
feedback
|
|
There is a splice method for Array. | |||||
feedback
|
|
Your method is as good as any- you'd have to splice each member of your second array individually.
alert(list.join('\n'))
| |||
|
feedback
|