Angular - Template-Driven Forms
Given this Angular form setup:
What will be logged to the console right after this code runs?
this.profileForm = new FormGroup({
firstName: new FormControl(''),
lastName: new FormControl('')
});
console.log(this.profileForm.value);What will be logged to the console right after this code runs?
