AngularJs Explain ng-repeat directive. By Mallikarjun A 12:28:00 Add Comment The ng-repeat directive is the most used and very useful AngularJS Directive feature. It iterates over a collection of items and creates DO... Read More
AngularJs Explain Convert Text To Uppercase Using AngularJS. By Mallikarjun A 12:27:00 Add Comment AngularJS provides a feature for converting all the letters of text into uppercase letters. I will explain this feature by creating a sampl... Read More
AngularJs Explain what is Dependency Injection in AngularJS? By Mallikarjun A 12:26:00 Add Comment Dependency Injection is one of the best features of AngularJS. It is a software design pattern in which objects are passed as dependencies.... Read More
AngularJs What is $rootscope and how do we use it? By Mallikarjun A 12:25:00 Add Comment $rootscope provides access to the top of the scope hierarchy, a scope provides a separation between View and its Model. Every application h... Read More
AngularJs How are validations implemented in AngularJS? By Mallikarjun A 12:24:00 Add Comment One of the coolest features of AngularJS is client-side validation. There are so many form directives available in AngularJS. We will talk ... Read More
AngularJs What is a Factory method in AngularJS? By Mallikarjun A 12:23:00 Add Comment AngularJS Factory: the purpose of Factory is also the same as Service, however in this case we create a new object and add functions as pro... Read More
AngularJs How many types of data binding in AngularJS? By Mallikarjun A 12:23:00 Add Comment Data binding is a very powerful feature of the software development technologies. Data binding is the connection bridge between view and bu... Read More
AngularJs How to implement routing in AngularJS? By Mallikarjun A 12:22:00 Add Comment Routing is a core feature in AngularJS. This feature is useful in building SPA (Single Page Application) with multiple views. In SPA applic... Read More