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>
  <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.js"></script>
</head>
<body ng-app="myApp">
</body>
</html>
 
var app = angular.module('myApp', []);
app.run(['$timeout', function ($timeout) {
    $timeout(function () {
        console.log('hello');
    },2000).then(function () {
        console.log('world');
    });
}]);
Output

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

Dismiss x
public
Bin info
Lovesueeepro
0viewers