Template = UI HTML Component = TS Script Access HTML element (DOM object) in typescript (Same component) HTML Element -> Component typescript (One Way) 1. HTML Bind -> Declare variable element using '#' 2. Typescript Bind -> Declare @ViewChild(< Variable in html>) <variable in TS>: ElementRef; ---------------------------------------------------------------------------------------------- Access Typescript variable in HTML (Same component) typescript -> HTML Element (One Way) 1. HTML Bind -> using interpolation {{variable in TS}} (display purpose) Direct use the varible name to get the value 2. Typescript Bind -> Declare variable ---------------------------------------------------------------------------------------------- Access HTML input value in typescript and vice verca (Same Component) Component typescript <-> HTML Input (Two Way) 1. HTML Bind -> Assign [(ngModel)] = variable in TS 2. Typescript Bind -> D...