I'm feeling a little puzzled and struggling to figure this out.
Let's say I have the following code:
const AnObj = Immutable.Map({
a : "a",
b : Immutable.List.of(
a,
b,
c,
Immutable.Map({
a : "a"
})
)
});
When working with Immutable Maps, we utilize strings in the get()
method to access corresponding properties. But how do we retrieve values from an array?