mercredi 16 décembre 2015

Javascript's syntactic sugar for accessing object properties

I have a 'result' object that I'd like to pool the value of these nested properties.

Is there an elegant way to assign the values of these two properties if they exist and throw and error otherwise? I find myself writing some long code for doing such a simple operation.

Thanks

host: result["ServerCA"]["_"],
database: result["DBId"]["_"]

EDIT1 - more information

My code constructs an object that has the two properties host and database. The result object is a JSON containing some information. I can't guarantee that the JSON will actually contain these two properties _ under ServerCA and _ under DBId. As a matter of fact, I can't be sure that ServerCA and DBId will be defined in the result object.

So I'm trying to validate that these properties exist, and assign their value to my own object's two properties host and database.

How can I write this in the simplest way instead of writing 2 double IF statements?

Thanks...

Aucun commentaire:

Enregistrer un commentaire