Searching the web for improvement, I found out Kitze had shared a similar implementation a while … It also records the HTML and CSS on the page, recreating pixel-perfect videos of even the most complex single-page apps.Or regular JavaScript functions (not called inside a functional component):The first rule means that, even inside functional components, you shouldn’t call In that regard, the most common mistake is to wrap useState calls in a conditional statement (they won’t be executed all the time):That’s why it is important to always maintain the Hook calls in the same order, otherwise, a value belonging to another state variable could be returned.In general terms, here’s an example of how this works step-by-step:You pass the initial state to this function, and it returns a variable with the current state value (not necessarily the initial state) and another function to update this value.Thanks for a great article. Sorry for the late response, you are right, that was a bad example, I have updated the sample code to place the call to useState inside the if block.
My newbie skills will thank you!I can see why a call to useState() shouldn’t be mixed into branching code (ifs, loops etc), because the identity of the state is dictated by the order of useState() calls within the stateless function call.However, I can’t see why having calls to the setMessage function in branching code below would be a problem (as per your example code quoted below). @AchmadWahyu I suggest you don't use greater than / less than in combination with switch. Thank you so much!Hi SpidaFly, sorry for the late response, and no problem at all answering your question. But to be honest, it doesn't really matter.