Skip to content
Advertisement

Cannot extract JSON property from object

I have this code

JavaScript

Which gives me this output

JavaScript

Within the actual body of this output there is this:

JavaScript

I want to call out the hotelID number: 424023

I have tried the following a few other modifications to this, but cannot seem to call out the correct object

JavaScript

But I get the error message

JavaScript

Advertisement

Answer

You’ve called your const data as well, so you’ll either need to destruct or call .data again, like so.

Destruct

You can destruct the propery onto your data const like so:

JavaScript

Assignment

If you don’t want to destruct, call data.data as per below.

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement