Async Basic
Async Basic
Sandeep G
Who Am I?
● If an operation takes a longer time, then you can not interact with your browser.
● A function which takes longer time to complete is called blocking function.
○ Technically, a blocking function blocks all the interactions on the web page.
Try changing it to -
n=1000000000000
How to avoid blocking function