Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
@umnikos a modifier to a function call to state that it's executed asynchronously
-
@umnikos async is a modifier to a function declaration to state that it can be executed asynchronously
async/await pairs are multithreading implementations for some languages -
@umnikos yeah, it's kinda weird at first, but multi-threading really couldn't be any easier
-
byIcee13027y@umnikos if I'm right. I think to put it in simpler words.
Async means running function on another thread, meaning, you can run it while you run a function in the other thread.
(I hope you already know that computers execute code one line at a time if you don't do async)
Related Rants
this is why you should learn async when learning a programming lang
undefined
async
js