I have an array 'cat', 'dog', 'budgie'
and want to remove the item by index.
At the moment I have
function removeit(myindex) {
animals[myindex] = animals.pop()
}
|
I have an array 'cat', 'dog', 'budgie' and want to remove the item by index. At the moment I have
|
|||
|
You want splice http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/Array.html#splice%28%29 Array.splice(starting point, remove count);
Change your function to
|
|||
|
|
animals[myindex] = null? What do you want the end result to be? – Sam DeHaan Apr 10 '12 at 13:33