AngularJS Cheat Sheet

Create vs. Get AngularJS application The module dependency array tells AngularJS to create an app, otherwise to load it: Create myApp var app = angular.module(‚myApp‘, []); Get myApp var app = angular.module(‚myApp‘); Binding @ Text binding, expressions are supported using {{ }} = Two-way binding & Method binding < One-way binding (usually for components) ?…