In react application I have json response object that looks like this :
{
100: "apple,
200: "bananas",
300: "pineapples"
}
I want to get a specific value, for example, a value that corresponds to 200 - "bananas".
What is the easiest way to do this? thank you!