Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 1006 Bytes

README.md

File metadata and controls

42 lines (31 loc) · 1006 Bytes

Course Exercises

Angular

1. Memory Game

Practice angular components:

  • Various bindings to templates
  • @Input,
  • @Output
  • Lifecycle hooks,

by writing a memory game

Exercise Document | Soltion code | Solution Video

2. Quiz app

Practice "Dependency Injection"

  • Root Injector
  • Component Injectors
  • Various types of providers
  • Injection Tokens

by writing a quizes app

Exercise Document | Soltion Code | Solution Video

3. Color Game

Practice writing reactive services

  • Using the async pipe
  • Using BehaviorSubjects
  • Using reactive forms - reactively

by writing a color game

Exercise Document | Soltion Code | Solution Video