Angular - Reactive Forms
Given this code snippet, what will be the initial value of the form control named
email?
this.form = this.fb.group({
email: ['user@example.com'],
password: ['']
});