HTML

  • HyperText Markup Lang
  • browser parse
  • construct DOM
  • render DOM
  • Painting happens

CSS

  • Cascading StyleSheet

  • Basically Overriding the default styles

     

JS

 

  • dynamic pro lang
  • dom Manipulation

SPA

 

  • Maintain

  • Structured

    MVC pattern

<div id="current-date">

</div>

<current-date>

</current-date>

Angular

  • how to add angular lib
  • ng-app (default) show console to find angular added or not
  • ng-if
  • ng-init

 

SCOPE

Controller

Subtitle

Module (ng-app)

1. Single source of truth

2. Collections

var module = angular.module("module-name", []) // Register

Controller

module.controller ('controller-name',   () {});

Dependency Injection

Two way binding

Nested Scope

Directive

Subtitle

deck

By praveen_jegan

deck

  • 197