Can someone please help me explain this code segment in AngularJS
$rootScope.compiledScope = $scope.$new(!0, $rootScope), $scope.variable = "someValue";
- What is $new operator serving here
- What is !0?
- How , is used to separate two statements and assign it to one variable on left
From the documentation,
$new
function accepts 2 parameters.First Part:
So deciphering the first part of your code:
Add property called
compiledScope
to your $rootScope whose value will be a new isolate scope whose parent is $rootScope.Second Part
Attach a
variable
to the$scope
and sets its value tosomeValue
. And the comma in between just separates 2 statement and is same like doing: