-1

I want to know how Angular Directives work behind the scene, are these Directives use DOM web api or what?

  • 1
    Try reading through **[Angular's Structural Directigves Guide](https://angular.io/guide/structural-directives)** – SiddAjmera May 19 '21 at 05:18
  • https://stackoverflow.com/questions/44970386/how-is-angulars-ngfor-loop-implemented - this has a good explanation – Tejeshree May 19 '21 at 05:22

1 Answers1

0

Angular is based on Typescript/JavaScript. You do not necessarily need the browser's Web-API for directives like *ngFor or *ngIf. For others it may be the case. I'd say it is a combination of both.