Angular - Reactive Forms
Given this Angular code snippet, what will
console.log(this.profileForm.value) output?this.profileForm = new FormGroup({
firstName: new FormControl('Alice'),
lastName: new FormControl('Smith')
});
console.log(this.profileForm.value);