Sololearn: Learn to Code
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1
use promise if possible. or create a callback. function foo(){ asyncfunction(paramX, callback); } function callback(result){ //the result goes here } function asyncfunction(x, callback){ //dosomething with x callback(result); }
19th Sep 2019, 6:03 AM
Taste
Taste - avatar