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?