Possible Duplicate:
How to catch last iteration inside $.each in jQuery?
For the following,it's 'c':fn3
var arr = {'a':fn1,'b':fn2,'c':fn3}
Is there a way to access the last pair directly,say,without iteration?
|
|
For the following,it's 'c':fn3
Is there a way to access the last pair directly,say,without iteration?
|
||||||
|
closed as exact duplicate by Gumbo, Kobi, Philippe Leybaert, Piskvor, Aaron Maenpaa Sep 9 at 12:07 |
|
|
There isn't really a "last pair" in this case - it's not an array you've defined, but an associative array (AKA |
||
|
|
|
|
You can do this if you can alter the data structure:
To get the key of last element:
To get the value of last element:
|
||
|
|
|
|
No, it is not possible. There isn't any concept of order for elements in an object. |
||
|
|