AnuglarJs

Angular Scopes

Angualr scope is the binding part between the HTML and JavaScript. The scope is available in View and Controller.

Use of Scope

You can use scope in Angular using $scope variable as show below example

<div ng-app="devApp" ng-controller="devCtrl">

<h1>{{name}}</h1>
</div>

<script>
var app = angular.module('devApp', []);

app.controller('devCtrl', function($scope) {
$scope.name = "Developerdiary";
});
</script>

In the view, you do not use the prefix $scope, you just refer to a propertyname, like {{name}}.

What is the $scope

Scope is the javascript object with methods and properties. Following are the example for understanding the scope better

Using : ng-repeat

 

<div ng-app="devApp" ng-controller="devCtrl">
<ul>
<li ng-repeat="x in number">{{x}}</li>
</ul>
</div>

<script>
var app = angular.module('devApp', []);

app.controller('devCtrl', function($scope) {
$scope.number = ["1", "2", "3", "4", "5"];
});
</script>

 

Developer Diary

Share
Published by
Developer Diary

Recent Posts

Top 10 ChatGPT Prompts to Learn Anything 10x Faster

Introduction Learning has been transformed by artificial intelligence, which provides resources that enable you to…

7 hours ago

Discover the Ultimate Tool for Frontend Designers and Developers

Introduction Even experienced developers may find it difficult to create aesthetically pleasing and useful web…

3 days ago

Git Tag Cheat Sheet

Introduction Git tags are an essential feature of version control systems, offering a simple way…

4 months ago

Understanding Web Storage: Cookies, Local Storage

Introduction The methods that browsers employ to store data on a user's device are referred…

5 months ago

Setting up OpenVPN Access Server in Amazon VPC – AWS

Introduction A well-known open-source VPN technology, OpenVPN provides strong protection for both people and businesses.…

5 months ago

Enhance Error Tracking & Monitoring: Integrate Sentry with Node.js & Express.js

Introduction Integrating Sentry into a Node.js, Express.js, and MongoDB backend project significantly enhances error tracking…

5 months ago