Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html ng-app="firstApp">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.26/angular.min.js"></script>
</head>
<body ng-controller="MyController">
  
  <p>Hello {{ name }}</p>
  
</body>
</html>
 
var app = angular.module('firstApp', []);
app.controller('MyController', function($scope) {
  
  $scope.name = "Deepak Sisodiya";
  
});
Output

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

Dismiss x
public
Bin info
deepaksisodiyapro
0viewers