i want to sort the keys or name of the method.. following is the object http://pastie.org/411854
|
|
|
|
|
|
|
If I understand correctly, you would like to put members in order based on key or method name (which is the same value)? This has no meaning for Object since members have no order. However, if you put these objects in an array like this:
Then you can sort the array easily by invoking Array.sort passing in compare function.
|
||
|
|
|
|
To get a sorted array of the function names you could use the following:
If you want to perform some sort of more complex sort you could do something along the lines of
You can get more information about custom sorting here: Array Sorting Explained |
||
|
|
