You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30-Days-Of-JavaScript/Practices/day_03/tasksLevel3.js

13 lines
677 B

// 1. Cree un formato de hora legible por humanos usando el objeto Date.
// La hora y el minuto deben ser siempre dos dígitos (7 horas deben ser 07 y 5 minutos deben ser 05)
// YYY-MM-DD HH:mm eg. 20120-01-02 07:05
let currentDate = new Date();
let year = currentDate.getFullYear();
let month = currentDate.getMonth() + 1;
let day = currentDate.getDate();
let hour = currentDate.getHours();
let newHour = hour.toString().length > 1 ? hour.toString() : '0' + hour.toString();
let minutes = currentDate.getMinutes();
let newMinutes = minutes.toString().length > 1 ? minutes.toString() : '0' + minutes.toString();
console.log(`${year}-${month}-${day} ${newHour}:${newMinutes}`);