my question is if i use form.reset();
and i already have default data like this :
this.basicInformationForm = this.formBuilder.group({
Name: ['1111'],
Mobile: ['111111'],
Email: ['', Validators.pattern(/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i)],
});
after reset the values will be null, can i return it to the default values :
example name is 1111 i change it manually in the textbox to 222, then i reset the form ,
i need it to return to 1111 not to null (or empty)