Skip to content
Advertisement

Access Javascript Object Value with Dynamic Key

How do you handle accessing the objects inside a JSON response when the key is dynamic?

In my code sample, I’ve created a reducer that makes API calls but requires params to work:

JavaScript

That function works and it returns a response that gets deposited on fetch that looks like this:

JavaScript

In my example response, allLocationss is the key, but some times it’s allTopics or allEvents, etc. If I use Object.keys(fetch)[1] I get a string returned. I also tried fetch.Object.keys(fetch)[1].edges but that doesn’t work either. Would love some ideas S.O.

Advertisement

Answer

To access dynamic key in response use variable[key] notations

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