My Blog

My WordPress Blog

My Blog

My WordPress Blog

Angular Interview Questions

What are Template statements?

Template statements are properties or methods used in HTML for responding to user events. With these template statements, the application that you create or are working on, can have the capability to engage users through actions such as submitting forms and displaying dynamic content. For example,  <button (click)=”deleteHero()”>Delete hero</button> The template here is deleteHero. The […]

What do you understand by scope in Angular?

The scope in Angular binds the HTML, i.e., the view, and the JavaScript, i.e., the controller. It as expected is an object with the available methods and properties. The scope is available for both the view and the controller. When you make a controller in Angular, you pass the $scope object as an argument. 

Scroll to top