My date() function wont show zeros no matter what, instead of showing 14:20 or 14:02, the zero is missing and all it shows is 14:2
getDate() {
  let data = new Date();
  let dia = data.getDate()+ '/' + (data.getMonth() + 1) + '/' + data.getFullYear();
  let hora = data.getHours() + ':' + data.getMinutes() + ' de ' + dia;
  return hora;
}, 
 
     
     
    