Skip to content

Tag: reactjs

Filtering arrays in JS/React

So here I have search functionality. Everything works fine except when an Item has not been found in the array. I have tried something with objects.Keys but it is displaying it on the render not when the Book has not been found like it should. Should I use if statement or. Answer You’re filtering the ca…

React hangs when trying to connect to component

For some reason, when trying to connect this component, react simply hangs without giving any error: Presumably the problem is with the profile object. Previously, everything was packaged in variables and everything worked, but now I replaced the variables with an object and react just stopped loading. Answer…