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 jit and aot?
What does ng stand for?
How can you create a decorator in angular?
Why decorators are used in angular?
What do you understand by services with reference to angular js?
What are the core components of angular 2?
What is ViewEncapsulation?
What is interceptor in angular?
How AngularJS expressions are different from the JavaScript expressions?
What is a template in angular?
What are events binding in angular 4?
Does angular support nested controllers?