Angular - Reactive Forms
Given this code snippet, what will be the length of the
FormArray after execution?const tags = new FormArray([]);
tags.push(new FormControl('angular'));
tags.push(new FormControl('typescript'));
tags.removeAt(0);