$scope in AngularJS is a built-in object which basically binds the "controller" and the "view". One can define member variables in the scope within the controller which can then be accessed by the view.
Consider example below:
<!DOCTYPE html>
<html lang="en">
<head>
<meta chrset="UTF 8">
<title>ViASTUDY</title>
</head>
<body ng-app="DemoApp">
<h1> ViASTUDY Global Event</h1>
<script src="https://code.angularjs.org/1.6.9/angular.js"></script>
<div ng-controller="DemoController">
{{fullName("ViASTUDY","Community")}}
</div>
<script type="text/javascript">
var app = angular.module("DemoApp", []);
app.controller("DemoController", function($scope) { $scope.fullName=function(firstName,lastname){
return firstName + lastname;
}
} );
</script>
</body>
</html>
Output:
ViASTUDY Global Event
ViASTUDY
0 Comments