--- title: AngularJS Controller --- # AngularJS Controller ------ Controllers are the behavior behind the DOM elements. AngularJS lets you express the behavior in a clean readable form without the usual boilerplate of updating the DOM, registering callbacks or watching model changes. (more info @ [https://angularjs.org/](https://angularjs.org/) Example ```html
First Name:
Last Name:

Full Name: {{firstName + " " + lastName}}
``` The ng-controller directive defines the application controller. A controller is a JavaScript Object, created by a standard JavaScript object constructor. More info @[https://www.w3schools.com/angular/angular_controllers.asp](https://www.w3schools.com/angular/angular_controllers.asp)