Loop through Angular Reactive Form Controls
for (const c in this.searchForm.controls) {
if (this.searchForm.controls.hasOwnProperty(c) && this.searchForm.controls[c].value) {
const value = this.searchForm.controls[c].value;
}
}