hhh

by fangunxs

HTML

<html ng-app='myApp'>
<body ng-controller='TextController'>
    <p>{{someText.message}}</p>
</body>
</html>

JavaScript

var myAppModule = angular.module('myApp',[]);

myAppModule.controller('TextController', function($scope) {
    var someText = {};
    someText.message = 'You have started your journey.';
    $scope.someText = someText;
});