{{ person.name }}
Angular provides two different approaches to handling user input through forms: reactive and template-driven
https://angular.io/guide/forms-overview
what are pipes in Angular Ref: https://blog.bitsrc.io/pipes-in-angular-4f979af63dd7
Built-in pipes in Angular Angular comes with many built-in pipes. Some of them include:
uppercase (to convert string in upper case)
lowercase (to convert string in upper case)
date (to format the date into different types)
json (to convert a value or object into JSON formatted string)
Examples of pipes in use:
{{ 'Makesh' | uppercase }}
{{ 'Kumar' | lowercase }}
{{ { name: 'makesh' } | json }}