$scope Object in AngularJS — a practical guide to AngularJS $scope with clear examples you can reuse in real projects.
AngularJS Tutorial Series (13/99). Prefer one article? Read the complete AngularJS tutorial.
Short description
Prefer controller-as (this / vm) in newer AngularJS style guides.
$scope example
angular.module('myApp')
.controller('HelloCtrl', function ($scope) {
$scope.name = 'Asha';
$scope.greet = function () {
return 'Hello ' + $scope.name;
};
});