If there is an Javascript object:
var objects={...};
Suppose, it has more than 50 properties, without knowing the property names (that's without knowing the 'keys') how to get each property value in a loop?
|
If there is an Javascript object:
Suppose, it has more than 50 properties, without knowing the property names (that's without knowing the 'keys') how to get each property value in a loop? |
|||
|
|
|
By using a simple
|
|||
|
|
|
Here's a reusable function for getting the values into an array. It takes prototypes into account too.
|
|||
|
You can loop through the keys:
will output:
|
||||
|
|
|
in ECMAScript5 use
Otherwise if you're browser does not support it, use the well-known
|
|||||||||
|
|
In ECMA 5, if you want to avoid the prototype chain then the following is short and avoids the filtering necessary with a
If you want to make it safe against |
|||
|
|
|
|||
|
|