then()
and catch()
that allow you to handle the success or failure of an asynchronous operation in a more concise and predictable way.await
keyword to pause the execution until a promise is resolved or rejected.setTimeout
function:sayHello
function takes a name and a callback function as arguments. It uses the setTimeout
function to wait one second before logging "Hello " + the name to the console and then executes the callback function.fetch
function returns a promise that resolves with the response from the API. We chain the then
method to the promise to parse the response as JSON, and then log the data to the console. If an error occurs, we catch it and log it to the console.fetchData
the function is declared as async
, allowing us to use the await
keyword to pause the execution until the promise is resolved or rejected. We use a try/catch block to handle any errors that may occur during the execution of the code.Posted Sep 4, 2023
Asynchronous programming is a key aspect of JavaScript that allows code to run non-blocking, which means that it can continue executing other tasks while waiti…