Reactive Form: previous value

let form = this.fb.group({
  'hotelLocation':[null]
});
 
form.get('hotelLocation').valueChanges.subscribe(v => {
 
  // HERE !!
  let prevVal = this.form.value['hotelLocation'];
});