cara mengatur input tipe waktu ke waktu saat ini pada inisialisasi

this.createForm.patchValue({
    date: new Date(),
    time: new Date().getHours() + ':' + new Date().getMinutes()
  });
Hiren Vadher