Skip to content
Advertisement

Usestate increment by 1 not working in setInterval

JavaScript

For some reason this will never go past two when I run the setCurrentPage but if I increment it like this

JavaScript

It works as expected. I am guessing it has something to do with the useEffect or the setInterval but not really a 100% sure why.

Advertisement

Answer

A new handleScroll function is created on every render in your code.

The function is passed to setInterval only the first time, so the currentPage inside this function will always stay 1, then 1 + 1 is always 2.

(A) Put handleScroll into the dependency array

A solution would be to create a new setInterval whenever there is a new handlescroll:

JavaScript

Obviously, in this case a setTimeout might be a better choice, as it always runs only once anyway.

(B) Pass a function to setState

Alternatively you can pass a function to setState:

JavaScript

That is generally totally ok, but be careful not to lie about your effect’s dependencies.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement