Angular: Empty Fiddle

http://angularjs.org/

HTML

<div ng-controller="webAddressController">
  Hello, {{name}}!
</div>

JavaScript

(function () {
    "use strict";

angular.module('myApp',[]).controller('webAddressController', function($scope) {
    
    $scope.name = 'World';
    // Do things
});

}());