Angular - Reactive Forms
Consider the following code:
What will be printed in the console?
const control = new FormControl('initial');
control.setValue('updated');
console.log(control.value);What will be printed in the console?
