I get the following object:
obj = {
fernando: {
nome: 'Fernando',
idade: 21
},
tiago: {
nome: 'tiago',
idade: NaN
},
total: 2
}
As you can see, I get an object where each attribute can be another object, and can also be an integer type attribute.
How do I check each "person" .ity is Number
????
EDIT: I need to check "N" values (people), not just a specific ...