Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
</body>
</html>
 
function runAnimation(step) {
  console.log(step);
}
function delay(interval) {
  return new Promise(function(resolve) {
      setTimeout(resolve, interval);
  });
}
runAnimation(0);
delay(1000)
    .then(function() {
        runAnimation(1); 
        return delay(1000);
    })
    .then(function() {
        runAnimation(2);
    });
Output

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

Dismiss x
public
Bin info
jamesknelsonpro
0viewers