音が流れない場合、再生を一時停止してもう一度再生してみて下さい。
ツール 
画像
Bro Code
155018回再生
JavaScript ASYNC/AWAIT is easy! ⏳

#javascript #tutorial #programming

// Async/Await = Async = makes a function return a promise
// Await = makes an async function wait for a promise

// Allows you write asynchronous code in a synchronous manner
// Async doesn't have resolve or reject parameters
// Everything after Await is placed in an event queue

async function doChores(){

try{
const walkDogResult = await walkDog();
console.log(walkDogResult);

const cleanKitchenResult = await cleanKitchen();
console.log(cleanKitchenResult);

const takeOutTrashResult = await takeOutTrash();
console.log(takeOutTrashResult);

console.log("You finsihed all the chores!");
}
catch(error){
console.error(error);
}
}

doChores();

コメント