function test(){
var distance=null;
first();
second();
third();
alert(distance);//it shows null always because it take 2 second to complete.
}
function first(tolat, tolon, fromlat,fromlon){
// calulating road distance between two points on the map using any other distance caluculating apis.
distance=dis; // update the value of distance but it takes 2 second to complete.
}
function second(){}
function third(){}
Run Code Online (Sandbox Code Playgroud)
我在我的代码中有这种情况,现在很多时间函数三在第一次和第二次完成执行之前被调用而距离值没有更新.