Will this work for you?
function getValue(id){
return (!isNaN(aa[id])) ? aa[id] : undefined;
}
Update:
With the help from Moss Collum and pottedmeat I recommend this generic solution:
function getValue(hash,key) {
return Object.prototype.hasOwnProperty.call(hash,key) ? hash[key] : undefined;
}
Update2: Had forgot the ".call". (thanks pottedmeat for pointing that out)
Update3: (About the key)
Note the following: The key will internally be converted to a string because the key is actually a name of an attribute.
var test = {
2:"Defined as numeric",
"2":"Defined as string"
}
alert(test[2]); //Alerts "Defined as string"
If trying to use an object:
var test={}, test2={};
test[test2]="message"; //Using an object as a key.
alert(test[test2]); //Alerts "message". Looks like it works...
alert(test[ test2.toString() ]);
//If it really was an object this would not have worked,
// but it also alerts "message".
Now that you know that it is always a string, lets use it:
var test={};
var test2={
toString:function(){return "some_unique_value";}
//Note that the attribute name (toString) don't need quotes.
}
test[test2]="message";
alert(test[ "some_unique_value"] ); //Alerts "message".
