Welcome to JS Bin
Load cached copy from
 
function doSomeAsyncHTTPRequest() {
  return new Promise((resolve, reject) => {
    setTimeout(() => {
      resolve();
    }, 2000);
  });
}
console.log('first log')
// lets send some http-request. This now returns a Promise!
doSomeAsyncHTTPRequest()
  .then((result) => {
    // The function that made the request has now resolved the Promise it returned
    console.log('third log');
  });
// the code immediately continues executing. It doesn't wait for the request to finish.
console.log('second log');
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x