Basic level — What is data binding in angular?

Anil Kumar
May 23, 2023

--

binding is technique of continuous connection between view(html) and model ( class data). if there will be change in class than angular update template and vice versa.

So binding have types

  1. property
  2. attribute
  3. class and style
  4. event
  5. two way ( event + property)

--

--