Angular: Empty Fiddle

by HoffZ

HTML

<div ng-app>
    <div ng-controller="TestingCtrl">
         <h2>{{title}}</h2>

    </div>
</div>

JavaScript

function TestingCtrl($scope) {
    $scope.title = 'Angular testing';

}