Comment définir l'entrée du type de temps à l'heure actuelle lors de l'initialisation

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