menyegarkan tanggal dan waktu setiap sudut detik

setInterval(() => {         
  //replaced function() by ()=>
  this.myDate = new Date();
  console.log(this.myDate); 
  // just testing if it is working
}, 1000);
Mysterious Mallard