Skip to content

Tag: javascript

Write nested map function

I have an object like this: Expected output : And I already wrote a function like this: I can write another function to flatten the output of the code above, but is there any other way to write the code above into a more general function (not hardcoded) that can apply to any object? Answer You can use a recur…

Context API problem – object is undefined

I’ve been always using Redux, but I finally decided to try to play with Context API, but apparently I’m missing something. I get an error “TypeError: Object(…)(…) is undefined” in App.js, weather and details appear to be undefined. Could you please check out my code in orde…