什麼是Callback


不懂得的可以看看這個

function eat(food,callback){
  console.log("我吃了"+food);
  callback(100,'好開心');
}

eat('牛排',function(status,mood){
  console.log("我的狀態:" + status);
  console.log("我的心情:" + mood);
});

results matching ""

    No results matching ""