var regxp = /[\S]/; //any char, not sure if it's /.*/ or something else
var obj = {
atr1: "bla"
}
var blahs = obj[regxp]; //returns atr1
I'm looking for a shortcut to get methods/properties names from an object, because for..in is slow compared to a for loop for instance.
I want this for a special case when I know the object will have only one method/property
var obj = { atr1 = "bla" }What's that?! – wong2 Jun 3 '11 at 5:22