What is the easiest way to insert a new object into an array of objects at the index position 0? No jQuery; MooTools okay; no unshift() because it's undefined in IE according to w3schools.
|
|
|||
| show 1 more comment |
|
W3CSchools is really outdated, the There is no reason to avoid it nowadays, it is supported from IE 5.5 up. It is safe to use it, even modern libraries like jQuery or MooTools internally use it (you can check the source code :).
This method returns the new array length, and inserts the element passed as argument at the first position of the array. |
|||||||||||||||||
|
|
Using splice method.
For inserting, 'howmany' = 0 |
|||||||||
|
|
You can try this:
Another option is to use |
|||
|
|
|
I would use
See: concat |
|||
|
|
unshiftworks on IE: jsbin.com/umolo – Kobi Feb 4 '10 at 5:19