vote up 0 vote down star

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?

flag

40% accept rate
3  
Duplicate: stackoverflow.com/questions/1399004/… – Gumbo Sep 9 at 11:57
Do you marked it as a duplicate only because both questions were asked by the same guy? IMHO this is a good question on its own. Nevertheless the answer is: there's no way to do that. – Fabian Neumann Sep 9 at 13:16

closed as exact duplicate by Gumbo, Kobi, Philippe Leybaert, Piskvor, Aaron Maenpaa Sep 9 at 12:07

3 Answers

vote up 5 vote down

There isn't really a "last pair" in this case - it's not an array you've defined, but an associative array (AKA Object), which is unordered.

link|flag
vote up 3 vote down

You can do this if you can alter the data structure:

var arr = [['a',fn1], ['b',fn2], ['c',fn3]];

To get the key of last element:

arr[arr.length-1][0]

To get the value of last element:

arr[arr.length-1][1]
link|flag
vote up 1 vote down

No, it is not possible. There isn't any concept of order for elements in an object.

link|flag

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