Angular - Reactive Forms
Given this code snippet:
What will be logged to the console?
const nameControl = new FormControl('Alice');
nameControl.setValue('Bob');
console.log(nameControl.value);What will be logged to the console?
