Skip to content Skip to sidebar Skip to footer

Is Requestanimationframe Run Concurrently With Other Scripts?

does requestAnimationFrame run the functions queued up on it concurrently with other normally run javascript, i.e. from user input or from setTimeout/setInterval?

Solution 1:

It runs on the same single thread like everything else (except Workers), so yes.


Post a Comment for "Is Requestanimationframe Run Concurrently With Other Scripts?"