What is Isolate Scope and why it is required?
Answer / chaitanya
By default, directives have access to the parent scope in AngularJS apps. Hence, you can write your custom directive code based on parent scope. If the parent scope changes at all the directive is no longer useful.
The shared scope allows the parent scope to flow down into the directive but the Isolate scope doesn’t allow the parent scope to flow down into the directive.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the use of polyfills.ts file in angular 2?
Why do we need services in angular?
What is dom in angular?
How $location is different from window.location in angularjs?
What happen when I import the same module twice?
Explain package.json file in angular?
What are angular testing utilities?
Is it a good or bad practice to use angular js together with jquery?
What is a controller angular?
What are the advantages and disadvantages of art compilation?
What mean by topology?
Does webpack remove unused imports?