does requestAnimationFrame run the functions queued up on it concurrently with other normally run javascript, i.e. from user input or from setTimeout/setInterval?
does requestAnimationFrame run the functions queued up on it concurrently with other normally run
Share
It runs on the same single thread like everything else (except Workers), so yes.