What are type safe TestBed API changes in Angular9?
Angular 9 provides type safe changes in TestBed API changes by replacing the old get function with the new inject method. Because TestBed.get method is not type-safe. The usage would be as below,
TestBed.get(ChangeDetectorRef); // returns any. It is deprecated now.TestBed.inject(ChangeDetectorRef); // returns ChangeDetectorRef
July 05, 2022
170
Read more
What is Angular Framework?
November 04, 2022
AngularWhat is a Angular module?
November 03, 2022
AngularWhat are the steps to use animation module?
October 31, 2022
Angular