FrontBackGeek

What is Angular js and what is module and controller ?

FrontBackGeek 3 years ago

Angular js is a javascript framework which is used to build web applications. Benefits of angular js : Dependency injection Two way data binding Testing It uses model-view-controller Directives, filters…

FrontBackGeek

What is two way data binding in angular js ?

FrontBackGeek 3 years ago

Two way data binding keeps the model and view in sync at all times, i.e a change in model, updates the view and a change in view, updates the model….

FrontBackGeek

What are angular js directives ? How ng-src and ng-repeat directive works.

FrontBackGeek 3 years ago

Angular js let you extends HTML with new attributes called directives, Angular js has many built in directive two of them are ng-src and ng-repeat.  So if we use binding…

FrontBackGeek

How to handle events in angular js

FrontBackGeek 3 years ago

In this blog we will understand how to handle event actions like clicking a button. The common way to handle events is through the functions or methods. In this blog…

FrontBackGeek

What are the common filters used in angular js?

FrontBackGeek 3 years ago

Filters can do three different things, format, sort and filter data. Filter can be used within a binding expression or a directive, to apply filter we use pipe ( |…