Angular - Reactive Forms
Given this reactive form code snippet, what will be the output when
console.log(this.form.value) is called after initialization?this.form = new FormGroup({
email: new FormControl(''),
password: new FormControl('1234')
});