If I have an object like:
{ 'a' : 'apple', 'b' : 'banana', 'c' : 'carrot' }
If I don't know in advance that the list goes up to 'c', other than looping through the object, is there a way to get the last item in the object (e.g. 'carrot')?
|
If I have an object like:
If I don't know in advance that the list goes up to 'c', other than looping through the object, is there a way to get the last item in the object (e.g. |
|||||||||
|
|
No. Order is not guaranteed in JSON and most other key-value data structures, so therefore the last item could sometimes be |
|||||||||
|
|
Use an array, not an object literal, if order matters.
Or something like
Or even..
The keys for |
|||
|
|
|
As for the ordering of object properties in Javascript, I will just link to this answer: Elements order - for (... in ...) loop in javascript Specifically:
So every other answer here is correct, there is no official guaranteed order to object properties. However in practice there is (barring any bugs which naturally can screw up even set-in-stone officially specified behavior). Furthermore, the de-facto enumeration order of object properties is likely to be codified in future EMCAScript specs. Still, at this time I would not write code around this, mostly because there are no built-in tools to help deal with object property order. You could write your own, but in the end you'd always be looping over each property in an object to determine its position. As such the answer to your question is No, there is no way besides looping through an object. |
|||
|
|
|||
|
Yes, there is a way using
If you want to get the value of the last object, you could do this:
|
||||
|
|