Introduction

 
 
 
<!DOCTYPE html> <html lang="en-US"> <head> <title>LearnKode - Angular JS Introduction example</title> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.0-rc.1/angular.min.js"></script> </head> <body ng-app="sampleApplication"> <div ng-controller="sampleController" > <h2>{{title}}</h2> </div> <script> var app = angular.module("sampleApplication", []); app.controller("sampleController", function($scope) { $scope.title = "Finally, you created a Hello world page!"; }); </script> </body> </html>
Output