Angular - Template-Driven Forms
Given this Angular reactive form code snippet:
What will be logged immediately after this code runs?
this.loginForm = new FormGroup({
username: new FormControl(''),
password: new FormControl('')
});
console.log(this.loginForm.value);What will be logged immediately after this code runs?
