I just want to ask how to get the order number of an object element, like:
{ '411510958020624384': 272216, <- 0
'482286641982078977': 195951, <- 1
'469176984086380574': 156025, <- 2
'560134275538747403': 126684, <- 3
'389078110571724801': 101750, <- 4
'593157035499978752': 66255 } <- 5
For example obj['411510958020624384']
will give you 0
, obj['560134275538747403']
will give you 3
, and...
How can I do that? ~and thx.