Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So I'm writing a browser application that fetches data from many different public APIs (via JSONP) and uses that data to decorate my local records.

Yeah, this could be done server-side beforehand but I'm not there yet.

I've never used try/catch in JavaScript before. In trying to lookup response.foo.bar.baz in a response that's liable to change, would this be a good time to use it?

Alternatively, is there a more elegant way to lookup deeply nested properties and not throw an error if it can't be found?

share|improve this question

3 Answers

It's probably easier to write:

try {
    response.foo.bar.baz;
}
catch (e) {
    //oops
}

Than:

if( response && response.foo && response.foo.bar && "baz" in response.foo.bar ) {

}
else {
    //oops
}
share|improve this answer
what if response.foo is supposed to be falsey? ;-) – Alnitak May 11 '12 at 18:36
@Alnitak I guess that only applies to response.foo.bar.baz, not response.foo as falsey values don't have any properties – Esailija May 11 '12 at 18:39
true, but I see you got my point ;-) – Alnitak May 11 '12 at 18:40

Given that the alternative is something like:

if ('foo' in response &&
    'bar' in response.foo &&
    'baz' in response.foo.baz)
{
    ...
}

it sounds like a try / catch block might be a good option in this case!

share|improve this answer

You could do something like this:

response && response.foo && response.foo.bar && response.foo.bar.baz

If one of the nested properties doesn't exist it will return undefined else it will return the contents of response.foo.bar.baz.

Alternative you could use this function:

function getNestedProperty(firstObject, propertiesArray)
{
    if(firstObject instanceof Object)
    {
        var currentObject = firstObject;
        for(var i = 0; i < propertiesArray.length; i++)
        {
            if(currentObject.hasOwnProperty(propertiesArray[i]))
            {
                currentObject = currentObject[propertiesArray[i]];
            }
            else
            {
                return false;
            }
        }
        return currentObject;
    }
    else
    {
        return false;
    }
}

Usage:

getNestedProperty(response, ['foo', 'bar', 'baz']);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.