Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <button onclick="start()">Start</button>
  <script type="text/javascript">
    async function start() {
      console.log('started');
      
      try {
        const res = await fakeAsyncCompute;
        console.log('done with ', res);
      } catch (ex) {
        console.log('ex = ', ex);
      } finally {
        console.log('async over');
      }
    }
        
    const fakeAsyncCompute = {
      then: (successCallback, errorCallback)=>{
        setTimeout(()=> {
          console.log('then'); 
          //successCallback(100);
          errorCallback(200);
        }, 3000);
      }
    }
  </script>
</body>
</html>
Output

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

Dismiss x
public
Bin info
Jeff-Tianpro
0viewers